Skip to content

Commit

Permalink
Android Studio 4.2.1, build tools 30.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
poernahi committed Jun 25, 2021
1 parent 54b424b commit 7db3ae7
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 17 deletions.
16 changes: 5 additions & 11 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,15 @@ apply plugin: 'com.android.application'

android {
compileSdkVersion 10
buildToolsVersion '25.0.2'
buildToolsVersion '30.0.2'

defaultConfig {
applicationId "com.obsidium.bettermanual"
minSdkVersion 10
targetSdkVersion 10
versionCode 7
versionName "1.5"
archivesBaseName = "BetterManual-${versionName}"
}
buildTypes {
release {
Expand All @@ -25,18 +26,11 @@ android {
}

repositories {
jcenter()
mavenCentral()
maven { url "https://jitpack.io" }
}

android.applicationVariants.all { variant ->
variant.outputs.each { output ->
def apkName = "BetterManual-${output.baseName}-${variant.versionName}.apk"
output.outputFile = new File(output.outputFile.parent, apkName)
}
}

dependencies {
provided 'com.github.ma1co.OpenMemories-Framework:stubs:-SNAPSHOT'
compile 'com.github.ma1co.OpenMemories-Framework:framework:-SNAPSHOT'
compileOnly 'com.github.ma1co.OpenMemories-Framework:stubs:-SNAPSHOT'
implementation 'com.github.ma1co.OpenMemories-Framework:framework:-SNAPSHOT'
}
8 changes: 5 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
buildscript {
repositories {
jcenter()
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.0'
classpath 'com.android.tools.build:gradle:4.2.1'
}
}

allprojects {
repositories {
jcenter()
google()
mavenCentral()
maven {
url "https://jitpack.io"
}
Expand Down
6 changes: 3 additions & 3 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Sat Mar 04 13:20:02 CET 2017
#Thu Jun 24 20:15:04 EDT 2021
distributionBase=GRADLE_USER_HOME
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7.1-bin.zip
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip
zipStoreBase=GRADLE_USER_HOME

0 comments on commit 7db3ae7

Please sign in to comment.