Skip to content
This repository was archived by the owner on Feb 20, 2024. It is now read-only.

Commit 02694ab

Browse files
authored
Merge pull request #59 from yggdrasil-network/develop
2.0.19
2 parents e170d07 + 799e1fd commit 02694ab

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+211
-192
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,5 @@
1717
/app/src/main/assets/yggdrasil-0.3.8-linux-arm64
1818
/app/src/main/assets/yggdrasil-0.3.8-linux-armhf
1919
/.idea/
20+
21+
acra.properties

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "yggdrasil/yggdrasil-extras"]
2+
path = yggdrasil/yggdrasil-extras
3+
url = https://github.com/yggdrasil-network/yggdrasil-extras

.idea/codeStyles/Project.xml

Lines changed: 0 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/compiler.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/gradle.xml

Lines changed: 1 addition & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/jarRepositories.xml

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 11 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/runConfigurations.xml

Lines changed: 0 additions & 12 deletions
This file was deleted.

acra.properties.sample

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
ACRA_BACKEND_URL=""
2+
ACRA_LOGIN=""
3+
ACRA_PASSWORD=""

app/build.gradle

Lines changed: 19 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,25 @@
11
apply plugin: 'com.android.application'
22
apply plugin: 'kotlin-android'
33

4+
def acraSecretsPropertiesFile = rootProject.file("acra.properties")
5+
def acraSecretsProperties = new Properties()
6+
acraSecretsProperties.load(new FileInputStream(acraSecretsPropertiesFile))
7+
48
android {
5-
compileSdkVersion 29
9+
compileSdkVersion 31
610
defaultConfig {
711
applicationId "io.github.chronosx88.yggdrasil"
812
minSdkVersion 15
9-
targetSdkVersion 29
10-
versionCode 23
11-
versionName "2.0.3"
13+
targetSdkVersion 31
14+
15+
versionCode 37
16+
versionName "2.0.19"
1217
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1318
setProperty("archivesBaseName", project.getParent().name+"-"+versionName)
19+
20+
buildConfigField("String", "ACRA_BACKEND_URL", acraSecretsProperties['ACRA_BACKEND_URL'])
21+
buildConfigField("String", "ACRA_LOGIN", acraSecretsProperties['ACRA_LOGIN'])
22+
buildConfigField("String", "ACRA_PASSWORD", acraSecretsProperties['ACRA_PASSWORD'])
1423
}
1524
signingConfigs {
1625
release {
@@ -68,19 +77,19 @@ dependencies {
6877
implementation fileTree(dir: 'libs', include: ['*.jar'])
6978
implementation project(path: ':yggdrasil')
7079

71-
implementation 'androidx.appcompat:appcompat:1.3.0'
72-
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
80+
implementation 'androidx.appcompat:appcompat:1.3.1'
81+
implementation 'androidx.constraintlayout:constraintlayout:2.1.1'
7382
implementation 'androidx.preference:preference-ktx:1.1.1'
7483
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
7584

76-
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.8'
77-
implementation 'com.google.android.material:material:1.4.0-rc01'
85+
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.0'
86+
implementation 'com.google.android.material:material:1.5.0-alpha04'
7887
implementation 'com.google.code.gson:gson:2.8.6'
7988
implementation 'com.hbb20:ccp:2.4.0'
8089
implementation 'com.vincentbrison.openlibraries.android:dualcache:3.1.1'
8190
implementation 'com.vincentbrison.openlibraries.android:dualcache-jsonserializer:3.1.1'
8291

8392
testImplementation 'junit:junit:4.13.1'
84-
androidTestImplementation 'androidx.test:runner:1.3.0'
85-
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
93+
androidTestImplementation 'androidx.test:runner:1.4.0'
94+
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
8695
}

0 commit comments

Comments
 (0)