Compare commits
12 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 8c0326cebb | |||
| f3c444c025 | |||
| 1f4ae087d1 | |||
| 1aa4382529 | |||
| 3827ac802c | |||
| 93232a5a26 | |||
| b9e823ff8f | |||
| 6c47546d8e | |||
| 1ebbe18252 | |||
| 32e75598cd | |||
| efff4078ab | |||
| c4122bcf1a |
@@ -1,5 +1,14 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 3.6.2.1 (versionCode 38, 2023-08-07)
|
||||||
|
|
||||||
|
- Fix Gradle build issue
|
||||||
|
|
||||||
|
## 3.6.2.0 (versionCode 37, 2023-08-05)
|
||||||
|
|
||||||
|
- Update to moasdawiki-server 3.6.2
|
||||||
|
- Upgrade library dependencies
|
||||||
|
|
||||||
## 3.6.1.0 (versionCode 36, 2023-04-29)
|
## 3.6.1.0 (versionCode 36, 2023-04-29)
|
||||||
|
|
||||||
- Update to moasdawiki-server 3.6.1
|
- Update to moasdawiki-server 3.6.1
|
||||||
|
|||||||
+17
-16
@@ -2,14 +2,13 @@ apply plugin: 'com.android.application'
|
|||||||
|
|
||||||
android {
|
android {
|
||||||
namespace "net.moasdawiki.app"
|
namespace "net.moasdawiki.app"
|
||||||
compileSdkVersion 33 // 33 = Android 13
|
compileSdk 33 // 33 = Android 13
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
applicationId "net.moasdawiki.app"
|
applicationId "net.moasdawiki.app"
|
||||||
minSdkVersion 28 // 28 = Android 9
|
minSdk 28 // 28 = Android 9
|
||||||
targetSdkVersion 33 // should be same as compileSdkVersion
|
targetSdk 33 // should be same as compileSdk
|
||||||
versionCode 36
|
versionCode 38
|
||||||
versionName "3.6.1.0"
|
versionName "3.6.2.1"
|
||||||
archivesBaseName = "moasdawiki-" + versionName + "-" + versionCode
|
|
||||||
}
|
}
|
||||||
compileOptions {
|
compileOptions {
|
||||||
sourceCompatibility JavaVersion.VERSION_11
|
sourceCompatibility JavaVersion.VERSION_11
|
||||||
@@ -18,20 +17,22 @@ android {
|
|||||||
buildFeatures {
|
buildFeatures {
|
||||||
buildConfig true
|
buildConfig true
|
||||||
}
|
}
|
||||||
lint {
|
lintOptions {
|
||||||
// Workaround for KotlinNullPointerException in :app:lintVitalAnalyzeRelease
|
// Workaround for NullPointerException in :app:lintVitalAnalyzeRelease
|
||||||
checkReleaseBuilds false
|
checkReleaseBuilds false
|
||||||
}
|
}
|
||||||
|
base {
|
||||||
|
archivesName = "moasdawiki-" + defaultConfig.versionName + "-" + defaultConfig.versionCode
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation 'net.moasdawiki:moasdawiki-server:3.6.1'
|
api 'net.moasdawiki:moasdawiki-server:3.6.2'
|
||||||
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
api ('androidx.appcompat:appcompat:1.6.1') {
|
||||||
// androidx.appcompat:appcompat:1.5.0 causes dependency conflict, waiting for 1.6
|
exclude group: 'org.jetbrains', module: 'annotations'
|
||||||
// https://stackoverflow.com/questions/73406969/duplicate-class-androidx-lifecycle-viewmodellazy-found-in-modules-lifecycle-view
|
}
|
||||||
implementation 'androidx.appcompat:appcompat:1.4.2'
|
api ('androidx.preference:preference:1.2.1') {
|
||||||
// androidx.preference 1.2.0 causes dependency conflict
|
exclude group: 'org.jetbrains', module: 'annotations'
|
||||||
implementation 'androidx.preference:preference:1.1.1'
|
}
|
||||||
compileOnly 'org.jetbrains:annotations:24.0.1'
|
compileOnly 'org.jetbrains:annotations:24.0.1'
|
||||||
testImplementation 'org.testng:testng:7.7.1'
|
|
||||||
}
|
}
|
||||||
|
|||||||
+1
-1
@@ -6,7 +6,7 @@ buildscript {
|
|||||||
google()
|
google()
|
||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
classpath 'com.android.tools.build:gradle:8.0.0'
|
classpath 'com.android.tools.build:gradle:8.1.0'
|
||||||
|
|
||||||
// NOTE: Do not place your application dependencies here; they belong
|
// NOTE: Do not place your application dependencies here; they belong
|
||||||
// in the individual module build.gradle files
|
// in the individual module build.gradle files
|
||||||
|
|||||||
@@ -0,0 +1,2 @@
|
|||||||
|
- Auf moasdawiki-server 3.6.2 aktualisieren
|
||||||
|
- Bibliotheks-Abhängigkeiten aktualisieren
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
- Gradle-Problem beheben
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
- Update to moasdawiki-server 3.6.2
|
||||||
|
- Upgrade library dependencies
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
- Fix Gradle build issue
|
||||||
+2
-2
@@ -1,7 +1,7 @@
|
|||||||
distributionBase=GRADLE_USER_HOME
|
distributionBase=GRADLE_USER_HOME
|
||||||
distributionPath=wrapper/dists
|
distributionPath=wrapper/dists
|
||||||
distributionSha256Sum=e111cb9948407e26351227dabce49822fb88c37ee72f1d1582a69c68af2e702f
|
distributionSha256Sum=03ec176d388f2aa99defcadc3ac6adf8dd2bce5145a129659537c0874dea5ad1
|
||||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1.1-bin.zip
|
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2.1-bin.zip
|
||||||
networkTimeout=10000
|
networkTimeout=10000
|
||||||
zipStoreBase=GRADLE_USER_HOME
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
zipStorePath=wrapper/dists
|
zipStorePath=wrapper/dists
|
||||||
|
|||||||
Reference in New Issue
Block a user