Skip to content

Commit c156c9e

Browse files
committed
maintenance
1 parent 13e746e commit c156c9e

5 files changed

Lines changed: 7 additions & 5 deletions

File tree

app/build.gradle.kts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ android {
2525
applicationId = "in.hridayan.ashell"
2626
minSdk = 28
2727
targetSdk = 36
28-
versionCode = 59
29-
versionName = "v7.2.0"
28+
versionCode = 60
29+
versionName = "v7.2.1"
3030

3131
buildConfigField("String", "DIST_FLAVOR_GITHUB", "\"$flavorGitHub\"")
3232
buildConfigField("String", "DIST_FLAVOR_FDROID", "\"$flavorFDroid\"")
@@ -126,6 +126,7 @@ android {
126126

127127
jniLibs {
128128
useLegacyPackaging = false
129+
keepDebugSymbols.add("**/*.so")
129130
}
130131
}
131132

app/lint-baseline.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
errorLine2=" ~~~~~~~~~~~~~~">
99
<location
1010
file="build.gradle.kts"
11-
line="24"
11+
line="27"
1212
column="9"/>
1313
</issue>
1414

app/src/main/java/in/hridayan/ashell/settings/data/source/VersionList.kt renamed to app/src/main/java/in/hridayan/ashell/settings/data/source/VersionToChangelogMap.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ data class VersionToChangelogs(
88
)
99

1010
val versionToChangelogsMap = listOf(
11+
VersionToChangelogs("v7.2.1", R.string.changelog_v7_2_1),
1112
VersionToChangelogs("v7.2.0", R.string.changelog_v7_2_0),
1213
VersionToChangelogs("v7.1.0", R.string.changelog_v7_1_0),
1314
VersionToChangelogs("v7.0.1", R.string.changelog_v7_0_1),

app/src/main/res/values/strings.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -538,6 +538,7 @@
538538
* Use \n to separate changelog lines for bullet points in UI
539539
* Use this exact res ID naming format, eg: for v6.0.0 -&gt; changelog_v6_0_0
540540
*/
541+
<string name="changelog_v7_2_1">\nMaintenance update!</string>
541542
<string name="changelog_v7_2_0">\nAdded option to run adb commands from Quick Settings Tiles by adding custom tiles.\nAdded option to backup to cloud (Google Drive). This feature is only present in GitHub builds.\nImproved color scheme and UI and UX in a lot of areas.\nAdded a lot more ADB command examples.</string>
542543
<string name="changelog_v7_1_0">\nFixed an issue where English keyboard might not show up in command input in case user sets a locale other than English for the app\nFixed an issue with Mail icon not showing properly\nFixed an issue which caused app to crash while trying to save huge file outputs\nRemoved redundant permissions\nImproved UI in About section</string>
543544
<string name="changelog_v7_0_1">\nFastlane fix</string>

gradle.properties

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@
66
# http://www.gradle.org/docs/current/userguide/build_environment.html
77
# Specifies the JVM arguments used for the daemon process.
88
# The setting is particularly useful for tweaking memory settings.
9-
org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
10-
# When configured, Gradle will run in incubating parallel mode.
9+
org.gradle.jvmargs=-Xmx6g -XX:MaxMetaspaceSize=2g -Dfile.encoding=UTF-8
1110
# This option should only be used with decoupled projects. More details, visit
1211
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
1312
# org.gradle.parallel=true

0 commit comments

Comments
 (0)