X-Git-Url: https://git.ktnx.net/?a=blobdiff_plain;f=app%2Fbuild.gradle;h=52592224e3517bde1a0625d7e6ba13d0fbecee1c;hb=f2e25c0371d25932ef6b225fa0e8a8278d02476e;hp=b3b34d8081220b26171ff09d060c4fb5e2a3e17a;hpb=f3bd24df1a0becf411885def8e9057c93753c060;p=mobile-ledger.git diff --git a/app/build.gradle b/app/build.gradle index b3b34d80..52592224 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -18,14 +18,14 @@ apply plugin: 'com.android.application' android { - compileSdkVersion 29 + compileSdkVersion 30 defaultConfig { applicationId "net.ktnx.mobileledger" minSdkVersion 22 - targetSdkVersion 29 + targetSdkVersion 30 vectorDrawables.useSupportLibrary true - versionCode 38 - versionName '0.17.0' + versionCode 51 + versionName '0.21.2' testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" javaCompileOptions { annotationProcessorOptions { @@ -46,9 +46,14 @@ android { versionNameSuffix '-debug' applicationIdSuffix '.debug' } + pre { + applicationIdSuffix '.pre' + versionNameSuffix '-pre' + minifyEnabled false + proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' + } } sourceSets { main { assets.srcDirs = ['src/main/assets', 'src/main/assets/'] } } - buildToolsVersion '29.0.3' compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 @@ -56,29 +61,30 @@ android { productFlavors { } buildFeatures.viewBinding = true + buildToolsVersion '30.0.3' } dependencies { - implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.3.0' - implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.3.0' - def room_version = '2.2.6' - implementation "androidx.room:room-runtime:$room_version" + implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.4.1' + implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.4.1' + def room_version = '2.4.2' + implementation "androidx.room:room-runtime:2.4.2" annotationProcessor "androidx.room:room-compiler:$room_version" - def nav_version = '2.3.3' + def nav_version = '2.4.2' implementation fileTree(include: ['*.jar'], dir: 'libs') implementation 'androidx.legacy:legacy-support-v4:1.0.0' - implementation 'com.google.android.material:material:1.3.0' - implementation 'androidx.constraintlayout:constraintlayout:2.0.4' + implementation 'com.google.android.material:material:1.5.0' + implementation 'androidx.constraintlayout:constraintlayout:2.1.3' implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0' - implementation 'androidx.recyclerview:recyclerview:1.1.0' - testImplementation 'junit:junit:4.13.1' - androidTestImplementation 'androidx.test:runner:1.4.0-alpha04' - androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0-alpha04' - implementation 'org.jetbrains:annotations:15.0' - implementation 'com.fasterxml.jackson.module:jackson-modules-java8:2.11.3' + implementation 'androidx.recyclerview:recyclerview:1.2.1' + testImplementation 'junit:junit:4.13.2' + androidTestImplementation 'androidx.test:runner:1.5.0-alpha02' + androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.0-alpha05' + implementation 'org.jetbrains:annotations:23.0.0' + implementation 'com.fasterxml.jackson.module:jackson-modules-java8:2.13.2' implementation "androidx.navigation:navigation-fragment:$nav_version" implementation "androidx.navigation:navigation-ui:$nav_version" - implementation 'androidx.appcompat:appcompat:1.3.0-beta01' + implementation 'androidx.appcompat:appcompat:1.6.0-alpha01' } allprojects {