Compare commits
12 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 8c0326cebb | |||
| f3c444c025 | |||
| 1f4ae087d1 | |||
| 1aa4382529 | |||
| 3827ac802c | |||
| 93232a5a26 | |||
| b9e823ff8f | |||
| 6c47546d8e | |||
| 1ebbe18252 | |||
| 32e75598cd | |||
| efff4078ab | |||
| c4122bcf1a |
@@ -1,5 +1,14 @@
|
||||
# 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)
|
||||
|
||||
- Update to moasdawiki-server 3.6.1
|
||||
|
||||
+18
-17
@@ -2,14 +2,13 @@ apply plugin: 'com.android.application'
|
||||
|
||||
android {
|
||||
namespace "net.moasdawiki.app"
|
||||
compileSdkVersion 33 // 33 = Android 13
|
||||
compileSdk 33 // 33 = Android 13
|
||||
defaultConfig {
|
||||
applicationId "net.moasdawiki.app"
|
||||
minSdkVersion 28 // 28 = Android 9
|
||||
targetSdkVersion 33 // should be same as compileSdkVersion
|
||||
versionCode 36
|
||||
versionName "3.6.1.0"
|
||||
archivesBaseName = "moasdawiki-" + versionName + "-" + versionCode
|
||||
minSdk 28 // 28 = Android 9
|
||||
targetSdk 33 // should be same as compileSdk
|
||||
versionCode 38
|
||||
versionName "3.6.2.1"
|
||||
}
|
||||
compileOptions {
|
||||
sourceCompatibility JavaVersion.VERSION_11
|
||||
@@ -18,20 +17,22 @@ android {
|
||||
buildFeatures {
|
||||
buildConfig true
|
||||
}
|
||||
lint {
|
||||
// Workaround for KotlinNullPointerException in :app:lintVitalAnalyzeRelease
|
||||
lintOptions {
|
||||
// Workaround for NullPointerException in :app:lintVitalAnalyzeRelease
|
||||
checkReleaseBuilds false
|
||||
}
|
||||
base {
|
||||
archivesName = "moasdawiki-" + defaultConfig.versionName + "-" + defaultConfig.versionCode
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation 'net.moasdawiki:moasdawiki-server:3.6.1'
|
||||
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
||||
// androidx.appcompat:appcompat:1.5.0 causes dependency conflict, waiting for 1.6
|
||||
// https://stackoverflow.com/questions/73406969/duplicate-class-androidx-lifecycle-viewmodellazy-found-in-modules-lifecycle-view
|
||||
implementation 'androidx.appcompat:appcompat:1.4.2'
|
||||
// androidx.preference 1.2.0 causes dependency conflict
|
||||
implementation 'androidx.preference:preference:1.1.1'
|
||||
compileOnly 'org.jetbrains:annotations:24.0.1'
|
||||
testImplementation 'org.testng:testng:7.7.1'
|
||||
api 'net.moasdawiki:moasdawiki-server:3.6.2'
|
||||
api ('androidx.appcompat:appcompat:1.6.1') {
|
||||
exclude group: 'org.jetbrains', module: 'annotations'
|
||||
}
|
||||
api ('androidx.preference:preference:1.2.1') {
|
||||
exclude group: 'org.jetbrains', module: 'annotations'
|
||||
}
|
||||
compileOnly 'org.jetbrains:annotations:24.0.1'
|
||||
}
|
||||
|
||||
+1
-1
@@ -6,7 +6,7 @@ buildscript {
|
||||
google()
|
||||
}
|
||||
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
|
||||
// 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
|
||||
distributionPath=wrapper/dists
|
||||
distributionSha256Sum=e111cb9948407e26351227dabce49822fb88c37ee72f1d1582a69c68af2e702f
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1.1-bin.zip
|
||||
distributionSha256Sum=03ec176d388f2aa99defcadc3ac6adf8dd2bce5145a129659537c0874dea5ad1
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2.1-bin.zip
|
||||
networkTimeout=10000
|
||||
zipStoreBase=GRADLE_USER_HOME
|
||||
zipStorePath=wrapper/dists
|
||||
|
||||
Reference in New Issue
Block a user