Skip to content

Commit

Permalink
remove provider
Browse files Browse the repository at this point in the history
  • Loading branch information
Jasper-1024 committed Jun 19, 2022
1 parent 5d27b86 commit 5c67e61
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 9 deletions.
13 changes: 10 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ android {
applicationId "com.js.deepsleep"
minSdkVersion 24
targetSdkVersion 32
versionCode 9
versionName "1.2.0-rc1"
versionCode 10
versionName "1.2.0-rc2"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

Expand All @@ -33,6 +33,13 @@ android {
}

}

android.applicationVariants.all { variant ->
variant.outputs.all {
outputFileName = "${buildType.name}-${versionName}.apk"
}
}

// room test
sourceSets {
// Adds exported schema location as test app assets.
Expand Down Expand Up @@ -138,7 +145,7 @@ dependencies {
// optional - Test helpers
androidTestImplementation "androidx.room:room-testing:$room_version"

def koin_version = "3.1.6"
def koin_version = "3.1.6"
// Koin main features for Android
implementation "io.insert-koin:koin-android:$koin_version"
// No more koin-android-viewmodel, koin-android-scope, koin-android-fragment
Expand Down
12 changes: 6 additions & 6 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@
android:supportsRtl="true"
android:theme="@style/AppTheme">

<provider
android:name=".data.provider.DSContentProvider"
android:authorities="com.js.deepsleep"
android:enabled="true"
android:exported="true"
tools:ignore="ExportedContentProvider" />
<!-- <provider-->
<!-- android:name=".data.provider.DSContentProvider"-->
<!-- android:authorities="com.js.deepsleep"-->
<!-- android:enabled="true"-->
<!-- android:exported="true"-->
<!-- tools:ignore="ExportedContentProvider" />-->


<meta-data
Expand Down

0 comments on commit 5c67e61

Please sign in to comment.