apply plugin: 'com.android.application' android { compileSdkVersion build_versions.compileSdk buildToolsVersion build_versions.buildTools defaultConfig { applicationId "com.king.appupdater" minSdkVersion build_versions.minSdk targetSdkVersion build_versions.targetSdk versionCode app_version.versionCode versionName app_version.versionName testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } } dependencies { implementation fileTree(include: ['*.jar'], dir: 'libs') testImplementation "junit:junit:$versions.junit" androidTestImplementation "androidx.test.ext:junit:$versions.androidExtJunit" androidTestImplementation "androidx.test.espresso:espresso-core:$versions.espressoCore" implementation "androidx.appcompat:appcompat:$versions.appcompat" implementation "androidx.constraintlayout:constraintlayout:$versions.constraintLayout" implementation "com.squareup.okhttp3:okhttp:$versions.okhttp" implementation project(':app-updater') implementation project(':app-dialog') }