Merge branch 'main' into main

This commit is contained in:
Revertron 2022-10-30 17:43:16 +01:00 committed by GitHub
commit 978c446016
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 151 additions and 20 deletions

View file

@ -17,11 +17,27 @@ android {
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
signingConfigs {
create("yggdrasil") {
// You need to specify either an absolute path or include the
// keystore file in the same directory as the build.gradle file.
storeFile = file("gha.jks")
storePassword = "g1thub4ct10n34yggdr4s1l4ndr01d"
keyAlias = "yggdrasil-android"
keyPassword = "g1thub4ct10n34yggdr4s1l4ndr01d"
}
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
yggdrasil {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
signingConfig = signingConfigs.getByName("yggdrasil")
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
@ -43,4 +59,4 @@ dependencies {
testImplementation 'junit:junit:4.+'
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
}
}