]> git.ktnx.net Git - mobile-ledger.git/blob - app/build.gradle
update accounts table visual upon refreshilg the account data from the backend
[mobile-ledger.git] / app / build.gradle
1 apply plugin: 'com.android.application'
2
3 android {
4     compileSdkVersion 28
5     defaultConfig {
6         applicationId "net.ktnx.mobileledger"
7         minSdkVersion 23
8         targetSdkVersion 28
9         versionCode 1
10         versionName "1.0"
11         testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
12     }
13     buildTypes {
14         release {
15             minifyEnabled false
16             proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
17         }
18     }
19     sourceSets { main { assets.srcDirs = ['src/main/assets', 'src/main/assets/'] } }
20     buildToolsVersion '28.0.3'
21     compileOptions {
22         sourceCompatibility JavaVersion.VERSION_1_8
23         targetCompatibility JavaVersion.VERSION_1_8
24     }
25 }
26
27 dependencies {
28     implementation fileTree(dir: 'libs', include: ['*.jar'])
29     implementation 'com.android.support:appcompat-v7:28.0.0'
30     implementation 'com.android.support:support-v4:28.0.0'
31     implementation 'com.android.support:design:28.0.0'
32     implementation 'com.android.support.constraint:constraint-layout:1.1.3'
33     testImplementation 'junit:junit:4.12'
34     androidTestImplementation 'com.android.support.test:runner:1.0.2'
35     androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
36 }