Compare commits

...

8 Commits

Author SHA1 Message Date
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 31 additions and 26 deletions
+5
View File
@@ -1,5 +1,10 @@
# Changelog # Changelog
## 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
+14 -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 37
versionName "3.6.1.0" versionName "3.6.2.0"
archivesBaseName = "moasdawiki-" + versionName + "-" + versionCode
} }
compileOptions { compileOptions {
sourceCompatibility JavaVersion.VERSION_11 sourceCompatibility JavaVersion.VERSION_11
@@ -18,20 +17,18 @@ android {
buildFeatures { buildFeatures {
buildConfig true buildConfig true
} }
lint { base {
// Workaround for KotlinNullPointerException in :app:lintVitalAnalyzeRelease archivesName = "moasdawiki-" + defaultConfig.versionName + "-" + defaultConfig.versionCode
checkReleaseBuilds false
} }
} }
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,2 @@
- Update to moasdawiki-server 3.6.2
- Upgrade library dependencies
Binary file not shown.
+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
Vendored
+5 -6
View File
@@ -85,6 +85,9 @@ done
APP_BASE_NAME=${0##*/} APP_BASE_NAME=${0##*/}
APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
# Use the maximum available, or set MAX_FD != -1 to use that value. # Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD=maximum MAX_FD=maximum
@@ -141,7 +144,7 @@ if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then
case $MAX_FD in #( case $MAX_FD in #(
max*) max*)
# In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked. # In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked.
# shellcheck disable=SC3045 # shellcheck disable=SC3045
MAX_FD=$( ulimit -H -n ) || MAX_FD=$( ulimit -H -n ) ||
warn "Could not query maximum file descriptor limit" warn "Could not query maximum file descriptor limit"
esac esac
@@ -149,7 +152,7 @@ if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then
'' | soft) :;; #( '' | soft) :;; #(
*) *)
# In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked. # In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked.
# shellcheck disable=SC3045 # shellcheck disable=SC3045
ulimit -n "$MAX_FD" || ulimit -n "$MAX_FD" ||
warn "Could not set maximum file descriptor limit to $MAX_FD" warn "Could not set maximum file descriptor limit to $MAX_FD"
esac esac
@@ -194,10 +197,6 @@ if "$cygwin" || "$msys" ; then
done done
fi fi
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
# Collect all arguments for the java command; # Collect all arguments for the java command;
# * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of # * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of
# shell script including quotes and variable substitutions, so put them in # shell script including quotes and variable substitutions, so put them in