Skip to content

Commit

Permalink
Bump version to 1.0.4 & update tools
Browse files Browse the repository at this point in the history
  • Loading branch information
velitasali committed Aug 9, 2020
1 parent 440079f commit 6e8b632
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ buildscript {
dependencies {
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
classpath 'com.android.tools.build:gradle:3.5.3'
classpath 'com.android.tools.build:gradle:4.0.1'
classpath "com.github.dcendents:android-maven-gradle-plugin:2.1"
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3'
}
Expand All @@ -30,7 +30,7 @@ ext {
buildToolsVersion = "29.0.2"
minSdkVersion = 11
targetSdkVersion = 29
versionName = "1.0.3.2-local8"
versionName = "1.0.4"
versionCode = 10
supportVersion = "28.0.0"
}
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
* Date: 1/31/17 4:51 PM
*/

abstract public class KuickDb extends SQLiteOpenHelper
public abstract class KuickDb extends SQLiteOpenHelper
{
public static final String TAG = KuickDb.class.getSimpleName(),
ACTION_DATABASE_CHANGE = "com.genonbeta.database.intent.action.DATABASE_CHANGE",
Expand All @@ -30,7 +30,7 @@ abstract public class KuickDb extends SQLiteOpenHelper
TYPE_UPDATE = "typeUpdate";

private final List<BroadcastData> mBroadcastOverhead = new ArrayList<>();
private Context mContext;
private final Context mContext;

public KuickDb(Context context, String name, SQLiteDatabase.CursorFactory factory, int version)
{
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 @@
#Thu Sep 05 00:23:05 EET 2019
#Mon Aug 03 15:06:22 TRT 2020
distributionBase=GRADLE_USER_HOME
distributionUrl=https\://services.gradle.org/distributions/gradle-6.1.1-all.zip
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-5.4.1-all.zip
zipStoreBase=GRADLE_USER_HOME

0 comments on commit 6e8b632

Please sign in to comment.