Skip to content

Commit ca029bc

Browse files
authored
Merge pull request #22 from zeoflow/dev/startup
Updated to `startup:1.1.0`
2 parents 8cc0b27 + 68370a2 commit ca029bc

4 files changed

Lines changed: 9 additions & 13 deletions

File tree

app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ dependencies {
3636
implementation project(':dispatcher-runtime')
3737
annotationProcessor project(':dispatcher-compiler')
3838

39-
implementation('com.zeoflow:startup:1.0.1')
39+
implementation('com.zeoflow.startup:startup:1.1.0')
4040

4141
implementation 'androidx.appcompat:appcompat:1.4.2'
4242
implementation 'com.google.android.material:material:1.6.1'

gradle.properties

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ kotlin.code.style=official
2424
# Maven
2525
POM_NAME=Depot
2626
POM_PACKAGING=aar
27-
VERSION_NAME=1.0.5
27+
VERSION_NAME=1.0.6
2828
GROUP=com.zeoflow.depot
2929
POM_DESCRIPTION=The Depot persistence library provides an abstraction layer over SQLite to allow for more robust database access while using the full power of SQLite.
3030
POM_URL=https://github.com/zeoflow/depot
@@ -39,8 +39,4 @@ POM_DEVELOPER_NAME=ZeoFlow
3939
POM_DEVELOPER_EMAIL=open-source@zeoflow.com
4040

4141
# sonatype elements
42-
mavenCentralUsername=
43-
mavenCentralPassword=
44-
signing.keyId=
45-
signing.password=
4642
signing.secretKeyRingFile=../buildSrc/key.gpg

runtime/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ dependencies {
2222
api(project(':depot-common'))
2323
api(project(":sqlite-framework"))
2424

25-
implementation('com.zeoflow:startup:1.0.1')
25+
implementation('com.zeoflow.startup:startup:1.1.0')
2626

27-
implementation("androidx.arch.core:core-runtime:2.0.1")
28-
compileOnly("androidx.paging:paging-common:2.0.0")
29-
compileOnly("androidx.lifecycle:lifecycle-livedata-core:2.0.0")
30-
implementation("androidx.annotation:annotation-experimental:1.1.0-rc01")
27+
implementation("androidx.arch.core:core-runtime:2.1.0")
28+
compileOnly("androidx.paging:paging-common:3.1.1")
29+
compileOnly("androidx.lifecycle:lifecycle-livedata-core:2.4.1")
30+
implementation("androidx.annotation:annotation-experimental:1.2.0")
3131
compileOnly("org.jetbrains.kotlin:kotlin-stdlib:1.5.10")
3232
}
3333

runtime/src/main/java/com/zeoflow/depot/Depot.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
import androidx.annotation.NonNull;
2222
import androidx.annotation.RestrictTo;
2323

24-
import com.zeoflow.startup.AppInitializer;
24+
import com.zeoflow.startup.ApplicationInitializer;
2525

2626
/**
2727
* Utility class for Depot.
@@ -55,7 +55,7 @@ public static <T extends DepotDatabase> DepotDatabase.Builder<T> databaseBuilder
5555
+ " If you are trying to create an in memory database, use Depot"
5656
+ ".inMemoryDatabaseBuilder");
5757
}
58-
return new DepotDatabase.Builder<>(AppInitializer.getAppContext(), klass, name);
58+
return new DepotDatabase.Builder<>(ApplicationInitializer.getAppContext(), klass, name);
5959
}
6060

6161
/**

0 commit comments

Comments
 (0)