forked from jgilfelt/android-sqlite-asset-helper
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated the build tools version and android sdk versions.
Added changes from: jgilfelt#28 jgilfelt#37 jgilfelt#48 jgilfelt#83 jgilfelt#87 jgilfelt#109
- Loading branch information
Showing
12 changed files
with
223 additions
and
147 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,21 @@ | ||
buildscript { | ||
repositories { | ||
mavenCentral() | ||
google() | ||
} | ||
|
||
dependencies { | ||
classpath "com.android.tools.build:gradle:0.7.+" | ||
classpath "com.android.tools.build:gradle:$build_tools_version" | ||
} | ||
} | ||
|
||
project.ext { | ||
min_sdk_version = 19 | ||
target_sdk_version = 22 | ||
compile_sdk_version = 27 | ||
} | ||
allprojects { | ||
version = VERSION_NAME | ||
group = GROUP | ||
|
||
repositories { | ||
mavenCentral() | ||
google() | ||
} | ||
} |
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 |
---|---|---|
@@ -1,14 +1,17 @@ | ||
VERSION_NAME=2.0.2-SNAPSHOT | ||
VERSION_CODE=202 | ||
GROUP=com.readystatesoftware.sqliteasset | ||
## Project-wide Gradle settings. | ||
# | ||
# For more details on how to configure your build environment visit | ||
# http://www.gradle.org/docs/current/userguide/build_environment.html | ||
# | ||
# Specifies the JVM arguments used for the daemon process. | ||
# The setting is particularly useful for tweaking memory settings. | ||
# Default value: -Xmx1024m -XX:MaxPermSize=256m | ||
# org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 | ||
# | ||
# When configured, Gradle will run in incubating parallel mode. | ||
# This option should only be used with decoupled projects. More details, visit | ||
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects | ||
# org.gradle.parallel=true | ||
#Thu Dec 28 11:37:07 IST 2017 | ||
|
||
POM_DESCRIPTION=An Android helper class to manage database creation and version management using an application's raw asset files | ||
POM_URL=https://github.com/jgilfelt/android-sqlite-asset-helper | ||
POM_SCM_URL=https://github.com/jgilfelt/android-sqlite-asset-helper | ||
POM_SCM_CONNECTION=scm:[email protected]:jgilfelt/android-sqlite-asset-helper.git | ||
POM_SCM_DEV_CONNECTION=scm:[email protected]:jgilfelt/android-sqlite-asset-helper.git | ||
POM_LICENCE_NAME=The Apache Software License, Version 2.0 | ||
POM_LICENCE_URL=http://www.apache.org/licenses/LICENSE-2.0.txt | ||
POM_LICENCE_DIST=repo | ||
POM_DEVELOPER_ID=jgilfelt | ||
POM_DEVELOPER_NAME=Jeff Gilfelt | ||
build_tools_version=3.1.3 |
Binary file not shown.
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#Wed Apr 10 15:27:10 PDT 2013 | ||
#Tue Jun 26 16:44:41 IST 2018 | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists | ||
distributionUrl=http\://services.gradle.org/distributions/gradle-1.9-all.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-all.zip |
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 |
---|---|---|
@@ -1,23 +1,9 @@ | ||
apply plugin: 'android-library' | ||
apply plugin: 'com.android.library' | ||
|
||
android { | ||
buildToolsVersion '19.0.0' | ||
compileSdkVersion 19 | ||
compileSdkVersion compile_sdk_version | ||
|
||
defaultConfig { | ||
minSdkVersion 7 | ||
minSdkVersion min_sdk_version | ||
} | ||
} | ||
|
||
android.libraryVariants.all { variant -> | ||
def name = variant.buildType.name | ||
if (name.equals(com.android.builder.BuilderConstants.DEBUG)) { | ||
return; // Skip debug builds. | ||
} | ||
def task = project.tasks.create "jar${name.capitalize()}", Jar | ||
task.dependsOn variant.javaCompile | ||
task.from variant.javaCompile.destinationDir | ||
artifacts.add('archives', task); | ||
} | ||
|
||
apply from: 'https://raw.github.com/chrisbanes/gradle-mvn-push/master/gradle-mvn-push.gradle' |
Oops, something went wrong.