Browse Source

Android: bump dependencies, remove deprecations

master
PatrickMis 2 years ago
parent
commit
bbb89c0aa1
2 changed files with 7 additions and 7 deletions
  1. 0
    1
      android/AndroidManifest.xml
  2. 7
    6
      android/build.gradle

+ 0
- 1
android/AndroidManifest.xml View File

@@ -1,6 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.reecedunn.espeak"
android:versionCode="20"
android:versionName="1.52-dev" >


+ 7
- 6
android/build.gradle View File

@@ -4,7 +4,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.2.2'
classpath 'com.android.tools.build:gradle:7.3.1'
}
}
plugins {
@@ -21,7 +21,7 @@ repositories {


dependencies {
testImplementation 'junit:junit:4.12'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'org.hamcrest:hamcrest-all:1.3'
}

@@ -65,12 +65,13 @@ preBuild.dependsOn createDataVersion


android {
compileSdkVersion 33
compileSdk 33
ndkVersion "25.1.8937393"
namespace "com.reecedunn.espeak"

defaultConfig {
minSdkVersion 19
targetSdkVersion 30
minSdk 19
targetSdk 30
versionCode 22
versionName "1.52-dev"
}
@@ -93,7 +94,7 @@ android {
}
}

lintOptions {
lint {
abortOnError false
}
}

Loading…
Cancel
Save