plugins { id 'com.android.application' id 'org.jetbrains.kotlin.android' } apply from: '../config/sign.gradle' android { namespace 'com.mxn.helper.screenshot' compileSdk 30 signingConfigs { config { keyAlias propertyKeyAliasStr keyPassword propertyKeyPwdStr storeFile file(propertyStoreFileStr) storePassword propertyStorePwdStr } } defaultConfig { applicationId "com.mxn.helper.screenshot" minSdk 22 targetSdk 30 versionCode 2 versionName "1.1" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } buildTypes { debug { signingConfig signingConfigs.config } release { signingConfig signingConfigs.config minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' } } compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } kotlinOptions { jvmTarget = '1.8' } } dependencies { implementation fileTree("libs") implementation 'androidx.core:core-ktx:1.3.2' implementation 'androidx.appcompat:appcompat:1.2.0' implementation 'com.google.android.material:material:1.2.1' implementation 'androidx.constraintlayout:constraintlayout:2.0.4' implementation files('libs/framework.jar') testImplementation 'junit:junit:4.13.2' implementation 'com.koushikdutta.async:androidasync:2.+' // implementation 'org.nanohttpd:nanohttpd:2.3.1' implementation 'com.google.code.gson:gson:2.10.1' }