apply plugin: 'com.android.application' android { compileSdkVersion 28 defaultConfig { applicationId "com.beemdevelopment.aegis" minSdkVersion 19 targetSdkVersion 28 versionCode 10 versionName "0.4" } buildTypes { debug { minifyEnabled false applicationIdSuffix ".debug" manifestPlaceholders = [title:"AegisDev", iconName:"ic_launcher_debug"] } release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' manifestPlaceholders = [title:"Aegis", iconName:"ic_launcher"] } } compileOptions { targetCompatibility 1.8 sourceCompatibility 1.8 } } dependencies { def libsuVersion = '2.3.2' implementation fileTree(dir: 'libs', include: ['*.jar']) implementation 'com.amulyakhare:com.amulyakhare.textdrawable:1.0.1' implementation 'androidx.appcompat:appcompat:1.0.2' implementation 'androidx.cardview:cardview:1.0.0' implementation 'androidx.preference:preference:1.0.0' implementation 'com.takisoft.preferencex:preferencex:1.0.0' implementation 'com.google.android.material:material:1.0.0' implementation 'androidx.recyclerview:recyclerview:1.0.0' implementation 'androidx.legacy:legacy-support-v4:1.0.0' implementation 'com.getbase:floatingactionbutton:1.10.1' implementation 'com.github.apl-devs:appintro:v4.2.2' implementation 'com.github.avito-tech:krop:0.44' implementation 'com.madgag.spongycastle:core:1.58.0.0' implementation 'com.mattprecious.swirl:swirl:1.0.0' implementation 'de.hdodenhof:circleimageview:2.2.0' implementation 'me.dm7.barcodescanner:zxing:1.9' implementation "com.github.topjohnwu.libsu:core:${libsuVersion}" implementation "com.github.topjohnwu.libsu:io:${libsuVersion}" testImplementation 'junit:junit:4.12' }