Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 8c0326cebb | |||
| f3c444c025 | |||
| 1f4ae087d1 | |||
| 1aa4382529 |
@@ -1,5 +1,9 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 3.6.2.1 (versionCode 38, 2023-08-07)
|
||||||
|
|
||||||
|
- Fix Gradle build issue
|
||||||
|
|
||||||
## 3.6.2.0 (versionCode 37, 2023-08-05)
|
## 3.6.2.0 (versionCode 37, 2023-08-05)
|
||||||
|
|
||||||
- Update to moasdawiki-server 3.6.2
|
- Update to moasdawiki-server 3.6.2
|
||||||
|
|||||||
+6
-2
@@ -7,8 +7,8 @@ android {
|
|||||||
applicationId "net.moasdawiki.app"
|
applicationId "net.moasdawiki.app"
|
||||||
minSdk 28 // 28 = Android 9
|
minSdk 28 // 28 = Android 9
|
||||||
targetSdk 33 // should be same as compileSdk
|
targetSdk 33 // should be same as compileSdk
|
||||||
versionCode 37
|
versionCode 38
|
||||||
versionName "3.6.2.0"
|
versionName "3.6.2.1"
|
||||||
}
|
}
|
||||||
compileOptions {
|
compileOptions {
|
||||||
sourceCompatibility JavaVersion.VERSION_11
|
sourceCompatibility JavaVersion.VERSION_11
|
||||||
@@ -17,6 +17,10 @@ android {
|
|||||||
buildFeatures {
|
buildFeatures {
|
||||||
buildConfig true
|
buildConfig true
|
||||||
}
|
}
|
||||||
|
lintOptions {
|
||||||
|
// Workaround for NullPointerException in :app:lintVitalAnalyzeRelease
|
||||||
|
checkReleaseBuilds false
|
||||||
|
}
|
||||||
base {
|
base {
|
||||||
archivesName = "moasdawiki-" + defaultConfig.versionName + "-" + defaultConfig.versionCode
|
archivesName = "moasdawiki-" + defaultConfig.versionName + "-" + defaultConfig.versionCode
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1 @@
|
|||||||
|
- Gradle-Problem beheben
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
- Fix Gradle build issue
|
||||||
Vendored
BIN
Binary file not shown.
@@ -85,9 +85,6 @@ 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
|
||||||
|
|
||||||
@@ -197,6 +194,10 @@ 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
|
||||||
|
|||||||
Reference in New Issue
Block a user