Skip to content

Commit 6b7b980

Browse files
committed
a couple of gradle cleanups
1 parent 3ecb566 commit 6b7b980

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ android {
108108
abiFilters "armeabi-v7a", "x86"
109109
}
110110
manifestPlaceholders = [
111-
manifestApplicationId: "${applicationId}",
111+
manifestApplicationId: applicationId,
112112
onesignal_app_id: "aa46a500-ab1c-4127-b9ff-e7373da3ce35",
113113
onesignal_google_project_number: "185558680648",
114114
gmaps_key: System.getenv("GMAPS_KEY") ?: "",
@@ -157,7 +157,7 @@ android {
157157
// borrowed from https://gist.github.com/gabrielemariotti/6856974
158158
def propFile = new File('android/app//signing.properties')
159159
if (propFile.canRead()) {
160-
def Properties props = new Properties()
160+
Properties props = new Properties()
161161
props.load(new FileInputStream(propFile))
162162
if (props != null
163163
&& props.containsKey('STORE_FILE')

0 commit comments

Comments
 (0)