Skip to content

Commit

Permalink
Bumped version to 6.4.0, Gradle build tools 8.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
federicoiosue committed Aug 18, 2024
1 parent 4a38c8d commit 69530cd
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 8 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ buildscript {
maven { url "https://plugins.gradle.org/m2/" }
}
dependencies {
classpath 'com.android.tools.build:gradle:8.3.0'
classpath 'com.android.tools.build:gradle:8.5.2'
classpath "org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:3.2.0"
classpath 'com.adarshr:gradle-test-logger-plugin:2.1.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.10"
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
VERSION_NAME=6.3.2
VERSION_CODE=332
VERSION_NAME=6.4.0
VERSION_CODE=333
PACKAGE=it.feio.android.omninotes
MIN_SDK=21
TARGET_SDK=33
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
10 changes: 6 additions & 4 deletions omniNotes/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -68,15 +68,13 @@ android {


buildTypes {
debug {
testCoverageEnabled true
}
release {
minifyEnabled true
shrinkResources false
multiDexEnabled false
testCoverageEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
enableUnitTestCoverage false
enableAndroidTestCoverage false
android.applicationVariants.all { variant ->
variant.outputs.all {
outputFileName = "OmniNotes-${variant.name}-${variant.versionName}.apk"
Expand All @@ -86,6 +84,10 @@ android {
signingConfig signingConfigs.release
}
}
debug {
enableUnitTestCoverage true
enableAndroidTestCoverage true
}
}

flavorDimensions = ["standard"]
Expand Down

0 comments on commit 69530cd

Please sign in to comment.