Skip to content

Commit cd4ea3f

Browse files
committed
fix: Features list format, remove multi-lang from welcome, add release signing
1 parent ea1c759 commit cd4ea3f

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
lines changed

app/build.gradle.kts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,22 @@ android {
1717
versionName = "1.0.0"
1818
}
1919

20+
signingConfigs {
21+
create("release") {
22+
// For CI/CD, use environment variables or keystore file
23+
// For local builds, use debug signing
24+
storeFile = file("${System.getProperty("user.home")}/.android/debug.keystore")
25+
storePassword = "android"
26+
keyAlias = "androiddebugkey"
27+
keyPassword = "android"
28+
}
29+
}
30+
2031
buildTypes {
2132
release {
2233
isMinifyEnabled = true
2334
isShrinkResources = true
35+
signingConfig = signingConfigs.getByName("release")
2436
proguardFiles(
2537
getDefaultProguardFile("proguard-android-optimize.txt"),
2638
"proguard-rules.pro"

app/src/main/java/com/appcontrolx/ui/MainActivity.kt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,8 @@ class MainActivity : AppCompatActivity() {
5656
|• Batch operations with progress
5757
|• Activity Launcher
5858
|• Action Logs with rollback
59-
|• Status filter (Running/Stopped/Frozen/Restricted)
59+
|• Status filter
6060
|• Dark/Light theme
61-
|• Multi-language (EN/ID)
6261
""".trimMargin()
6362

6463
MaterialAlertDialogBuilder(this)

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@
208208
<string name="about_version_format">Version %1$s (%2$d)</string>
209209
<string name="about_features_title">Features</string>
210210
<string name="about_features_list">• Freeze/Unfreeze apps (disable without uninstall)\n• Force stop running apps\n• Restrict background activity\n• Batch operations on multiple apps\n• System app protection\n• Rollback with state snapshots\n• Root and Shizuku support\n• Material You design</string>
211-
<string name="about_features_short">Freeze/Unfreeze • Force Stop • Restrict Background • Clear Cache/Data • Batch Operations • Activity Launcher • Action Logs • Root &amp; Shizuku</string>
211+
<string name="about_features_short">Freeze/Unfreeze apps\n• Force Stop\n• Restrict/Allow Background\n• Clear Cache/Data\n• Batch Operations\n• Activity Launcher\n• Action Logs with Rollback\n• Root &amp; Shizuku support</string>
212212
<string name="about_system_title">Device Info</string>
213213
<string name="about_device">Device</string>
214214
<string name="about_device_format">%1$s %2$s</string>

0 commit comments

Comments
 (0)