You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
76 lines
2.7 KiB
Groovy
76 lines
2.7 KiB
Groovy
plugins {
|
|
id 'com.android.application'
|
|
id 'kotlin-android'
|
|
id 'com.google.firebase.crashlytics'
|
|
id 'com.google.gms.google-services'
|
|
id 'androidx.navigation.safeargs.kotlin'
|
|
}
|
|
|
|
android {
|
|
signingConfigs {
|
|
signingconf {
|
|
Properties properties = new Properties()
|
|
properties.load(project.rootProject.file('local.properties').newDataInputStream())
|
|
|
|
storeFile file(properties.getProperty("signing.file"))
|
|
storePassword properties.getProperty("signing.password")
|
|
keyAlias properties.getProperty("signing.key.alias")
|
|
keyPassword properties.getProperty("signing.key.password")
|
|
}
|
|
}
|
|
compileSdk 33
|
|
|
|
defaultConfig {
|
|
applicationId "com.cyb3rko.techniklogger"
|
|
minSdk 19
|
|
targetSdk 33
|
|
versionCode 15
|
|
versionName "2.2.1"
|
|
}
|
|
|
|
buildTypes {
|
|
debug {
|
|
manifestPlaceholders = [firebaseCollectionEnabled:"false"]
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
minifyEnabled true
|
|
}
|
|
release {
|
|
signingConfig signingConfigs.signingconf
|
|
minifyEnabled true
|
|
shrinkResources true
|
|
manifestPlaceholders = [firebaseCollectionEnabled:"true"]
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_11
|
|
targetCompatibility JavaVersion.VERSION_11
|
|
}
|
|
kotlinOptions {
|
|
jvmTarget = '11'
|
|
}
|
|
buildFeatures {
|
|
viewBinding true
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation platform('com.google.firebase:firebase-bom:30.0.1')
|
|
implementation 'androidx.appcompat:appcompat:1.5.1'
|
|
implementation 'androidx.cardview:cardview:1.0.0'
|
|
implementation 'androidx.core:core-ktx:1.9.0'
|
|
implementation 'androidx.navigation:navigation-fragment-ktx:2.5.2'
|
|
implementation 'androidx.navigation:navigation-ui-ktx:2.5.2'
|
|
implementation 'androidx.recyclerview:recyclerview:1.2.1'
|
|
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
|
|
implementation 'com.afollestad.material-dialogs:bottomsheets:3.3.0'
|
|
implementation 'com.airbnb.android:lottie:4.0.0'
|
|
implementation 'com.amitshekhar.android:android-networking:1.0.2'
|
|
implementation 'com.github.GrenderG:Toasty:1.5.0'
|
|
implementation 'com.github.parse-community.Parse-SDK-Android:parse:1.26.0'
|
|
implementation 'com.google.android.material:material:1.6.1'
|
|
implementation 'com.google.firebase:firebase-analytics-ktx' // BOM versioning
|
|
implementation 'com.google.firebase:firebase-crashlytics-ktx' // BOM versioning
|
|
implementation 'com.itextpdf:itextpdf:5.5.13.2'
|
|
}
|