| apply plugin: 'com.android.application' |
| apply plugin: 'kotlin-android' |
| |
| android { |
| compileSdkVersion 'android-Q' |
| defaultConfig { |
| applicationId "com.example.android.bubbles" |
| minSdkVersion 'Q' |
| targetSdkVersion 'Q' |
| versionCode 1 |
| versionName '1.0' |
| testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner' |
| } |
| buildTypes { |
| release { |
| minifyEnabled false |
| proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' |
| } |
| } |
| } |
| |
| dependencies { |
| implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" |
| |
| implementation 'androidx.appcompat:appcompat:1.0.2' |
| implementation 'androidx.fragment:fragment-ktx:1.0.0' |
| implementation 'androidx.core:core-ktx:1.0.1' |
| implementation 'androidx.constraintlayout:constraintlayout:1.1.3' |
| implementation 'androidx.recyclerview:recyclerview:1.0.0' |
| |
| def lifecycle_version = '2.0.0' |
| implementation "androidx.lifecycle:lifecycle-extensions:$lifecycle_version" |
| implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:$lifecycle_version" |
| testImplementation "androidx.arch.core:core-testing:$lifecycle_version" |
| |
| implementation 'com.google.android.material:material:1.0.0' |
| |
| implementation 'com.github.bumptech.glide:glide:4.9.0' |
| |
| testImplementation 'junit:junit:4.12' |
| androidTestImplementation 'androidx.test.ext:junit:1.1.0' |
| androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1' |
| |
| testImplementation 'org.robolectric:robolectric:4.2' |
| testImplementation "androidx.arch.core:core-testing:$lifecycle_version" |
| testImplementation 'androidx.test.ext:junit:1.1.0' |
| testImplementation 'androidx.test.espresso:espresso-core:3.1.1' |
| testImplementation 'androidx.test.ext:truth:1.1.0' |
| testImplementation 'com.google.truth:truth:0.42' |
| } |