chore: update SDK versions and repositories

Upgraded target SDK version to 33 and updated app version to 0.9.1.0 with version code 24091700 in line with new release standards. Replaced 'jcenter' with 'mavenCentral' and added an additional Maven repository. Resolves potential build issues due to jcenter shutdown and ensures compatibility with latest Android features.
This commit is contained in:
Kumi 2024-09-17 08:54:38 +02:00
parent 4d3953dc7e
commit 2ea937916f
Signed by: kumi
GPG key ID: ECBCC9082395383F
2 changed files with 5 additions and 7 deletions

View file

@ -1,15 +1,12 @@
apply plugin: 'com.android.application' apply plugin: 'com.android.application'
android { android {
compileSdkVersion 30
buildToolsVersion '30.0.3'
defaultConfig { defaultConfig {
applicationId "org.shadowice.flocke.andotp" applicationId "org.shadowice.flocke.andotp"
minSdkVersion 22 minSdkVersion 22
targetSdkVersion 30 targetSdkVersion 33
versionCode 39 versionCode 24091700
versionName "0.9.0.1" versionName "0.9.1.0"
vectorDrawables.useSupportLibrary = true vectorDrawables.useSupportLibrary = true
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
} }

View file

@ -16,8 +16,9 @@ buildscript {
allprojects { allprojects {
repositories { repositories {
google() google()
jcenter() mavenCentral()
maven { url "https://jitpack.io" } maven { url "https://jitpack.io" }
maven { url "https://maven.scijava.org/content/repositories/public" }
} }
} }