Skip to content

Commit 546cbaf

Browse files
committed
update build options
1 parent 9bb305c commit 546cbaf

File tree

3 files changed

+19
-8
lines changed

3 files changed

+19
-8
lines changed

app/build.gradle

+11-2
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,28 @@ apply plugin: 'kotlin-android-extensions'
66

77
android {
88
compileSdkVersion 34
9+
namespace 'com.gmail.anubhavdas54.whatsdeleted'
10+
911
defaultConfig {
1012
applicationId 'org.maintainteam.whatsdeleted'
13+
resValue "string", "app_name", "WhatsDeleted"
1114
minSdkVersion 21
1215
targetSdkVersion 33
13-
versionCode 6
14-
versionName "0.4.1"
16+
versionCode 10010
17+
versionName "0.4.2"
1518
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1619
}
1720
buildTypes {
1821
release {
1922
minifyEnabled false
2023
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
2124
}
25+
debug {
26+
debuggable true
27+
minifyEnabled false
28+
applicationIdSuffix ".debug"
29+
resValue "string", "app_name", "WhatsDeleted Debug"
30+
}
2231
}
2332
compileOptions {
2433
sourceCompatibility JavaVersion.VERSION_17

app/src/main/AndroidManifest.xml

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3-
xmlns:tools="http://schemas.android.com/tools"
4-
package="com.gmail.anubhavdas54.whatsdeleted">
3+
xmlns:tools="http://schemas.android.com/tools">
54

65
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
76
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
@@ -15,7 +14,9 @@
1514
android:theme="@style/AppTheme"
1615
tools:ignore="GoogleAppIndexingWarning">
1716
<activity android:name=".MsgLogViewerActivity" />
18-
<activity android:name=".MainActivity">
17+
<activity
18+
android:name=".MainActivity"
19+
android:exported="true">
1920
<intent-filter>
2021
<action android:name="android.intent.action.MAIN" />
2122

@@ -25,6 +26,7 @@
2526

2627
<service
2728
android:name=".NotificationListener"
29+
android:exported="true"
2830
android:label="@string/whatsapp_notification_listener_service"
2931
android:permission="android.permission.BIND_NOTIFICATION_LISTENER_SERVICE">
3032
<intent-filter>
+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Mon Jan 04 10:39:45 IST 2021
1+
#Fri Dec 06 15:23:46 GMT 2024
22
distributionBase=GRADLE_USER_HOME
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
34
distributionPath=wrapper/dists
4-
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-all.zip
6+
zipStoreBase=GRADLE_USER_HOME

0 commit comments

Comments
 (0)