Commit ecd1a63 ktc
committed
1 parent 00f9152 commit ecd1a63 Copy full SHA for ecd1a63
File tree 8 files changed +21
-9
lines changed
8 files changed +21
-9
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,8 @@ buildscript {
8
8
}
9
9
dependencies {
10
10
classpath ' com.android.tools.build:gradle:3.4.1'
11
- classpath ' com.github.dcendents:android-maven-gradle-plugin:2.1'
11
+ // classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
12
+ classpath ' com.novoda:bintray-release:0.9.1'
12
13
// NOTE: Do not place your application dependencies here; they belong
13
14
// in the individual module build.gradle files
14
15
}
Original file line number Diff line number Diff line change 1
- # Mon May 20 12:47:25 EEST 2019
2
1
distributionBase =GRADLE_USER_HOME
3
2
distributionPath =wrapper/dists
3
+ distributionUrl =https\://services.gradle.org/distributions/gradle-5.1.1-bin.zip
4
4
zipStoreBase =GRADLE_USER_HOME
5
5
zipStorePath =wrapper/dists
6
- distributionUrl =https\://services.gradle.org/distributions/gradle-5.1.1-all.zip
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ APP_NAME="Gradle"
28
28
APP_BASE_NAME=` basename " $0 " `
29
29
30
30
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
31
- DEFAULT_JVM_OPTS=" "
31
+ DEFAULT_JVM_OPTS=' "-Xmx64m" '
32
32
33
33
# Use the maximum available, or set MAX_FD != -1 to use that value.
34
34
MAX_FD=" maximum"
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ set APP_BASE_NAME=%~n0
14
14
set APP_HOME = %DIRNAME%
15
15
16
16
@ rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
17
- set DEFAULT_JVM_OPTS =
17
+ set DEFAULT_JVM_OPTS = " -Xmx64m "
18
18
19
19
@ rem Find java.exe
20
20
if defined JAVA_HOME goto findJavaFromJavaHome
Original file line number Diff line number Diff line change @@ -48,6 +48,5 @@ dependencies {
48
48
def lifecycle_version = " 2.0.0"
49
49
// ViewModel and LiveData
50
50
implementation " androidx.lifecycle:lifecycle-extensions:$lifecycle_version "
51
- implementation (name :' dbwrapper' , ext :' aar' )
52
51
53
52
}
Original file line number Diff line number Diff line change 35
35
android : text =" next" />
36
36
37
37
<TextView
38
- android : id =" @+id/miiinstructions "
38
+ android : id =" @+id/miiresetinstructions "
39
39
android : layout_width =" match_parent"
40
40
android : layout_height =" wrap_content"
41
41
android : text =" Reset the counter by deleting the key." />
Original file line number Diff line number Diff line change 1
1
apply plugin : ' com.android.library'
2
- apply plugin : ' com.github.dcendents.android-maven '
2
+ apply plugin : ' com.novoda.bintray-release '
3
3
4
- group= ' com.github.bh90210'
4
+ publish {
5
+
6
+ def groupProjectID = ' com.github.bh90210'
7
+ def artifactProjectID = ' simpledbw'
8
+ def publishVersionID = ' 0.1.5'
9
+
10
+ userOrg = ' bh90210'
11
+ repoName = ' SimpleDBW'
12
+ groupId = groupProjectID
13
+ artifactId = artifactProjectID
14
+ publishVersion = publishVersionID
15
+ desc = ' a persistent (key/value) storage library/wrapper for android using badgerDB.'
16
+ website = ' https://github.com/bh90210/SimpleDBW'
17
+ }
5
18
6
19
repositories {
7
20
flatDir {
You can’t perform that action at this time.
0 commit comments