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

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



+ 7
- 6
android/build.gradle View File

mavenCentral() mavenCentral()
} }
dependencies { dependencies {
classpath 'com.android.tools.build:gradle:7.2.2'
classpath 'com.android.tools.build:gradle:7.3.1'
} }
} }
plugins { plugins {




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






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


defaultConfig { defaultConfig {
minSdkVersion 19
targetSdkVersion 30
minSdk 19
targetSdk 30
versionCode 22 versionCode 22
versionName "1.52-dev" versionName "1.52-dev"
} }
} }
} }


lintOptions {
lint {
abortOnError false abortOnError false
} }
} }

Loading…
Cancel
Save