Android SDK and libraries upgraded to latest version (SDK 30 -> 33)
This commit is contained in:
parent
b637a0b9d6
commit
b6fff70334
2 changed files with 9 additions and 9 deletions
|
|
@ -2,7 +2,6 @@
|
||||||
<manifest
|
<manifest
|
||||||
android:versionCode="5"
|
android:versionCode="5"
|
||||||
android:versionName="git"
|
android:versionName="git"
|
||||||
package="io.github.sspanak.tt9"
|
|
||||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
|
||||||
<uses-permission android:name="android.permission.FOREGROUND_SERVICE"/>
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE"/>
|
||||||
|
|
|
||||||
17
build.gradle
17
build.gradle
|
|
@ -10,10 +10,10 @@ buildscript {
|
||||||
apply plugin: 'com.android.application'
|
apply plugin: 'com.android.application'
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation "androidx.core:core:1.6.0"
|
implementation "androidx.core:core:1.9.0"
|
||||||
implementation 'androidx.preference:preference:1.1.1'
|
implementation 'androidx.preference:preference:1.2.0'
|
||||||
implementation "androidx.room:room-runtime:2.1.0"
|
implementation "androidx.room:room-runtime:2.4.3"
|
||||||
annotationProcessor "androidx.room:room-compiler:2.1.0"
|
annotationProcessor "androidx.room:room-compiler:2.4.3"
|
||||||
}
|
}
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
|
|
@ -77,8 +77,9 @@ def getReleaseVersion = { ->
|
||||||
|
|
||||||
|
|
||||||
android {
|
android {
|
||||||
compileSdkVersion 30
|
buildToolsVersion "33.0.0"
|
||||||
buildToolsVersion "32.0.0"
|
compileSdkVersion 33
|
||||||
|
namespace "io.github.sspanak.tt9"
|
||||||
|
|
||||||
sourceSets {
|
sourceSets {
|
||||||
main {
|
main {
|
||||||
|
|
@ -113,8 +114,8 @@ android {
|
||||||
// release {
|
// release {
|
||||||
// storeFile file(System.getenv("KEYSTORE"))
|
// storeFile file(System.getenv("KEYSTORE"))
|
||||||
// storePassword System.getenv("KEYSTORE_PASS")
|
// storePassword System.getenv("KEYSTORE_PASS")
|
||||||
// keyAlias System.getenv("KEYALIAS")
|
// keyAlias System.getenv("KEY_ALIAS")
|
||||||
// keyPassword System.getenv("KEYALIAS_PASS")
|
// keyPassword System.getenv("KEY_ALIAS_PASS")
|
||||||
// }
|
// }
|
||||||
// }
|
// }
|
||||||
//
|
//
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue