Skip to content

Commit ecd1a63

Browse files
author
ktc
committed
bug fix
1 parent 00f9152 commit ecd1a63

File tree

8 files changed

+21
-9
lines changed

8 files changed

+21
-9
lines changed

build.gradle

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ buildscript {
88
}
99
dependencies {
1010
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'
1213
// NOTE: Do not place your application dependencies here; they belong
1314
// in the individual module build.gradle files
1415
}

gradle/wrapper/gradle-wrapper.jar

861 Bytes
Binary file not shown.
+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
#Mon May 20 12:47:25 EEST 2019
21
distributionBase=GRADLE_USER_HOME
32
distributionPath=wrapper/dists
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-5.1.1-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-5.1.1-all.zip

gradlew

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ APP_NAME="Gradle"
2828
APP_BASE_NAME=`basename "$0"`
2929

3030
# 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"'
3232

3333
# Use the maximum available, or set MAX_FD != -1 to use that value.
3434
MAX_FD="maximum"

gradlew.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ set APP_BASE_NAME=%~n0
1414
set APP_HOME=%DIRNAME%
1515

1616
@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"
1818

1919
@rem Find java.exe
2020
if defined JAVA_HOME goto findJavaFromJavaHome

sample/build.gradle

-1
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,5 @@ dependencies {
4848
def lifecycle_version = "2.0.0"
4949
// ViewModel and LiveData
5050
implementation "androidx.lifecycle:lifecycle-extensions:$lifecycle_version"
51-
implementation (name:'dbwrapper', ext:'aar')
5251

5352
}

sample/src/main/res/layout/monotonically_increasing_integers.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
android:text="next" />
3636

3737
<TextView
38-
android:id="@+id/miiinstructions"
38+
android:id="@+id/miiresetinstructions"
3939
android:layout_width="match_parent"
4040
android:layout_height="wrap_content"
4141
android:text="Reset the counter by deleting the key." />

simpledbw/build.gradle

+15-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,20 @@
11
apply plugin: 'com.android.library'
2-
apply plugin: 'com.github.dcendents.android-maven'
2+
apply plugin: 'com.novoda.bintray-release'
33

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+
}
518

619
repositories {
720
flatDir {

0 commit comments

Comments
 (0)