X-Git-Url: https://git.ktnx.net/?p=mobile-ledger.git;a=blobdiff_plain;f=app%2Fbuild.gradle;h=54637b411d0abae48f3187ce8ef314cbc9881399;hp=0842e4328131a44ce6762c92fcca26cd2d4f2d04;hb=d23a30e4f68a654e9d003960bcb6b7e7938498e6;hpb=76b09d3effc01b8090278cb672e9152fede870ca diff --git a/app/build.gradle b/app/build.gradle index 0842e432..54637b41 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -23,8 +23,8 @@ android { applicationId "net.ktnx.mobileledger" minSdkVersion 22 targetSdkVersion 28 - versionCode 29 - versionName '0.10.3' + versionCode 30 + versionName '0.11.0' testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } buildTypes { @@ -48,6 +48,7 @@ android { } dependencies { + def nav_version = '2.1.0-alpha06' implementation fileTree(include: ['*.jar'], dir: 'libs') implementation 'androidx.appcompat:appcompat:1.1.0-rc01' implementation 'androidx.legacy:legacy-support-v4:1.0.0' @@ -60,4 +61,6 @@ dependencies { androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0-alpha01' implementation 'org.jetbrains:annotations:15.0' implementation 'com.fasterxml.jackson.module:jackson-modules-java8:2.9.8' + implementation "androidx.navigation:navigation-fragment:$nav_version" + implementation "androidx.navigation:navigation-ui:$nav_version" }