Skip to content

Commit

Permalink
AGP 8.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
syslogic committed Aug 9, 2024
1 parent 47d8213 commit ff0a5c1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,5 @@ org.gradle.welcome=never

android.useAndroidX=true
android.enableJetifier=false

android.suppressUnsupportedCompileSdk=35
4 changes: 3 additions & 1 deletion mobile/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,10 @@ plugins {
/** Load API access-token from file `token.properties` */
if (rootProject.file('token.properties').exists()) {
def apikeys = new Properties()
apikeys.load(new FileInputStream(rootProject.file('token.properties')))
def fis = new FileInputStream(rootProject.file('token.properties'))
apikeys.load(fis)
project.ext.set('accessToken', apikeys['accessToken'])
fis.close()
} else {
println "*** File `token.properties` is missing; the GitHub API may be rate-limited."
println "*** The personal access token needs to be defined with an EditTextPreference."
Expand Down

0 comments on commit ff0a5c1

Please sign in to comment.