-
Notifications
You must be signed in to change notification settings - Fork 213
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bumped gradle from 2.9 to 3.3 and android-gradle plugin to 2.3.3 from…
… 1.3.1
- Loading branch information
1 parent
d0f4895
commit cc14845
Showing
5 changed files
with
9 additions
and
67 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,16 +5,11 @@ buildscript { | |
} | ||
|
||
dependencies { | ||
classpath 'com.android.tools.build:gradle:1.3.1' | ||
|
||
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.0' | ||
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.3' | ||
classpath 'com.android.tools.build:gradle:2.3.3' | ||
} | ||
} | ||
|
||
apply plugin: 'com.android.library' | ||
apply plugin: 'com.github.dcendents.android-maven' | ||
apply plugin: 'com.jfrog.bintray' | ||
|
||
allprojects { | ||
repositories { | ||
|
@@ -36,19 +31,18 @@ android { | |
compileSdkVersion 28 | ||
buildToolsVersion "28.0.3" | ||
|
||
sourceSets { | ||
androidTest.setRoot('src/test') | ||
} | ||
|
||
defaultConfig { | ||
minSdkVersion 10 | ||
targetSdkVersion 28 | ||
} | ||
|
||
lintOptions { | ||
disable 'MissingTranslation' | ||
checkReleaseBuilds false | ||
//If you want to continue even if errors found use following line | ||
abortOnError false | ||
} | ||
|
||
|
||
} | ||
|
||
Properties properties = new Properties() | ||
|
@@ -59,58 +53,6 @@ if (bintrayFile.exists()) { | |
properties = null | ||
} | ||
|
||
bintray { | ||
if (properties != null) { | ||
user = properties.getProperty("bintray.user") | ||
key = properties.getProperty("bintray.apikey") | ||
} | ||
configurations = ['archives'] | ||
pkg { | ||
repo = "libMozStumbler" | ||
name = "libMozStumbler" | ||
websiteUrl = siteUrl | ||
vcsUrl = gitUrl | ||
licenses = ["MPL-2.0"] | ||
publish = true | ||
} | ||
} | ||
|
||
|
||
|
||
install { | ||
repositories.mavenInstaller { | ||
pom { | ||
project { | ||
packaging 'aar' | ||
name 'A simple library to embed Mozilla Stumbler.' | ||
url siteUrl | ||
licenses { | ||
license { | ||
name 'Mozilla Public License, Version 2.0' | ||
url 'https://www.mozilla.org/MPL/2.0/' | ||
} | ||
} | ||
developers { | ||
developer { | ||
id 'garvankeeley' | ||
name 'Garvan Keeley' | ||
email '[email protected]' | ||
} | ||
developer { | ||
id 'crankycoder' | ||
name 'Victor Ng' | ||
email '[email protected]' | ||
} | ||
} | ||
scm { | ||
connection gitUrl | ||
developerConnection gitUrl | ||
url siteUrl | ||
} | ||
} | ||
} | ||
} | ||
} | ||
|
||
dependencies { | ||
androidTestCompile 'junit:junit:4.10' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters