Compare commits

..

12 Commits

Author SHA1 Message Date
Herbert Reiter 8c0326cebb New release 2023-08-07 20:53:01 +02:00
Herbert Reiter f3c444c025 New release 2023-08-07 20:51:36 +02:00
Herbert Reiter 1f4ae087d1 Fix Gradle build issue 2023-08-07 20:51:04 +02:00
Herbert Reiter 1aa4382529 Upgrade to Gradle 8.2.1 2023-08-07 20:49:26 +02:00
Herbert Reiter 3827ac802c New release 2023-08-05 22:10:42 +02:00
Herbert Reiter 93232a5a26 New release 2023-08-05 22:08:56 +02:00
Herbert Reiter b9e823ff8f Update to moasdawiki-server 3.6.2 2023-08-05 22:06:15 +02:00
Herbert Reiter 6c47546d8e Upgrade dependencies 2023-08-05 22:04:17 +02:00
Herbert Reiter 1ebbe18252 Remove old workaround 2023-08-05 22:02:25 +02:00
Herbert Reiter 32e75598cd Replace deprecated Gradle settings 2023-08-05 22:01:20 +02:00
Herbert Reiter efff4078ab Upgrade Gradle plugin 2023-08-05 21:58:42 +02:00
Herbert Reiter c4122bcf1a Upgrade to Gradle 8.2.1 2023-08-05 21:58:16 +02:00
8 changed files with 35 additions and 19 deletions
+9
View File
@@ -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
+18 -17
View File
@@ -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
View File
@@ -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
View File
@@ -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