Skip to content

Commit

Permalink
Update to 2.4.5 (#1086)
Browse files Browse the repository at this point in the history
Build tools 32.0.0
  • Loading branch information
gerhardol committed Jan 8, 2022
1 parent 4cc66f2 commit edd3ef9
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
env:
global:
- ANDROID_API=30
- ANDROID_BUILD_TOOLS=30.0.3
- ANDROID_BUILD_TOOLS=32.0.0
- ADB_INSTALL_TIMEOUT=5
language: android
jdk:
Expand Down
6 changes: 6 additions & 0 deletions app/assets/changes.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@
</head>
<body>
<h1>What's new</h1>
<h2>v2.4.5</h2>
<p>
<ul>
<li>#1084: TTS was not detected in LineageOS Android 11
</li>
</ul>
<h2>v2.4.4</h2>
<p>
<ul>
Expand Down
10 changes: 3 additions & 7 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ project.ext {
//Common settings for all builds
//Note that Android Studio does not know about the 'ext' module and will warn
//minSdkVersion differs between modules
buildToolsVersion = '30.0.3' //Update Travis manually
buildToolsVersion = '32.0.0' //Update Travis manually
compileSdkVersion = 30 //Update Travis manually
targetSdkVersion = 30

Expand All @@ -30,14 +30,10 @@ project.ext {
mockitoVersion = '3.11.2'

//The Git tag for the release must be identical for F-Droid
versionName = '2.4.4.0'
versionCode = 311
versionName = '2.4.5.0'
versionCode = 312
latestBaseVersionCode = 15000000

travisBuild = System.getenv("TRAVIS") == "true"
// allows for -Dpre-dex=false to be set
preDexEnabled = "true" == System.getProperty("pre-dex", "true")

// F-Droid builds only allow free software (wear dir deleted at builds)
allowNonFree = !project.hasProperty('org.runnerup.free') && rootProject.file("wear").exists()
enableWear = allowNonFree
Expand Down

0 comments on commit edd3ef9

Please sign in to comment.