Skip to content

Commit

Permalink
Update build.gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
ritessshhh authored Dec 27, 2024
1 parent 87e8d6d commit 45c35dc
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ buildscript {
google()
}
dependencies {

classpath 'com.android.tools.build:gradle:4.1.3'

// NOTE: Do not place your application dependencies here; they belong
Expand All @@ -23,9 +22,15 @@ allprojects {
google()
}

dependencies {
modules {
module("com.google.android:flexbox") {
replacedBy("com.google.android.flexbox:flexbox")
}
}
}

// Global variables common to all modules
// see: http://tools.android.com/tech-docs/new-build-system/tips
//
ext {
rtCompileSdkVersion=29 //Integer
rtBuildToolsVersion="26.0.1" //String
Expand All @@ -34,23 +39,17 @@ allprojects {

// Note that using target version 22 bypasses the new run-time permissions found
// in Marshmallow 23
//
rtTargetSdkVersion=22

rtVersionCode=1

// Semantic versioning description:
// <Milestone release> <Feature Release> <Patch release> <Asset Compatibility INDEX>


rtVersionName="3.5.0.1"
//TODO: move this out of build so we don't have to rebuild to unzip assets

}
}

task clean(type: Delete) {
delete rootProject.buildDir
}


0 comments on commit 45c35dc

Please sign in to comment.