Aegis/app/build.gradle

53 lines
1.9 KiB
Groovy
Raw Normal View History

2016-08-15 19:29:41 +00:00
apply plugin: 'com.android.application'
android {
2018-09-25 14:26:57 +00:00
compileSdkVersion 28
2016-08-15 19:29:41 +00:00
defaultConfig {
applicationId "com.beemdevelopment.aegis"
2016-11-13 17:00:13 +00:00
minSdkVersion 19
targetSdkVersion 28
2019-06-06 20:27:59 +00:00
versionCode 14
versionName "0.4.3"
2016-08-15 19:29:41 +00:00
}
buildTypes {
2017-12-12 11:25:55 +00:00
debug {
minifyEnabled false
2017-12-12 11:25:55 +00:00
applicationIdSuffix ".debug"
manifestPlaceholders = [title:"AegisDev", iconName:"ic_launcher_debug"]
2017-12-12 11:25:55 +00:00
}
2016-08-15 19:29:41 +00:00
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
manifestPlaceholders = [title:"Aegis", iconName:"ic_launcher"]
2016-08-15 19:29:41 +00:00
}
}
compileOptions {
targetCompatibility 1.8
sourceCompatibility 1.8
}
2016-08-15 19:29:41 +00:00
}
dependencies {
def libsuVersion = '2.3.2'
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.amulyakhare:com.amulyakhare.textdrawable:1.0.1'
2018-11-17 14:11:55 +00:00
implementation 'androidx.appcompat:appcompat:1.0.2'
2018-09-25 14:26:57 +00:00
implementation 'androidx.cardview:cardview:1.0.0'
implementation 'androidx.preference:preference:1.0.0'
implementation 'com.takisoft.preferencex:preferencex:1.0.0'
2018-09-25 14:26:57 +00:00
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'
2019-05-15 19:56:14 +00:00
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'
2016-08-15 19:29:41 +00:00
}