This repository was archived by the owner on Jul 25, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -15,9 +15,14 @@ android {
15
15
testInstrumentationRunner " android.test.InstrumentationTestRunner"
16
16
}
17
17
buildTypes {
18
+ debug {
19
+ applicationIdSuffix ' .dev'
20
+ manifestPlaceholders = [ permissionPackage : " com.humbughq.mobile.dev" ]
21
+ }
18
22
release {
19
23
minifyEnabled false
20
24
proguardFiles getDefaultProguardFile(' proguard-android.txt' ), ' proguard-rules.txt'
25
+ manifestPlaceholders = [ permissionPackage : " com.humbughq.mobile" ]
21
26
}
22
27
}
23
28
useLibrary ' org.apache.http.legacy'
Original file line number Diff line number Diff line change 9
9
<uses-permission android : name =" com.google.android.c2dm.permission.RECEIVE" />
10
10
11
11
<permission
12
- android : name =" com.humbughq.mobile .permission.C2D_MESSAGE"
12
+ android : name =" ${permissionPackage} .permission.C2D_MESSAGE"
13
13
android : protectionLevel =" signature" />
14
14
15
- <uses-permission android : name =" com.humbughq.mobile .permission.C2D_MESSAGE" />
15
+ <uses-permission android : name =" ${permissionPackage} .permission.C2D_MESSAGE" />
16
16
<uses-permission android : name =" android.permission.USE_CREDENTIALS" />
17
17
<uses-permission android : name =" android.permission.VIBRATE" />
18
18
You can’t perform that action at this time.
0 commit comments