Skip to content

Commit ff0a5c1

Browse files
committed
AGP 8.5.2
1 parent 47d8213 commit ff0a5c1

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

gradle.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,5 @@ org.gradle.welcome=never
99

1010
android.useAndroidX=true
1111
android.enableJetifier=false
12+
1213
android.suppressUnsupportedCompileSdk=35

mobile/build.gradle

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,10 @@ plugins {
88
/** Load API access-token from file `token.properties` */
99
if (rootProject.file('token.properties').exists()) {
1010
def apikeys = new Properties()
11-
apikeys.load(new FileInputStream(rootProject.file('token.properties')))
11+
def fis = new FileInputStream(rootProject.file('token.properties'))
12+
apikeys.load(fis)
1213
project.ext.set('accessToken', apikeys['accessToken'])
14+
fis.close()
1315
} else {
1416
println "*** File `token.properties` is missing; the GitHub API may be rate-limited."
1517
println "*** The personal access token needs to be defined with an EditTextPreference."

0 commit comments

Comments
 (0)