- mid commit

This commit is contained in:
2023-08-29 16:12:50 +01:00
parent f99fe44d4a
commit e0d030698c
7 changed files with 91 additions and 2 deletions

View File

@@ -40,7 +40,7 @@
<provider
android:name="androidx.core.content.FileProvider"
android:authorities="com.appttude.h_mal.farmr.provider"
android:authorities="${applicationId}.provider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data

View File

@@ -9,7 +9,7 @@ import com.appttude.h_mal.farmr.BuildConfig
* Created by h_mal on 26/12/2017.
*/
object ShiftsContract {
const val CONTENT_AUTHORITY = BuildConfig.APPLICATION_ID
const val CONTENT_AUTHORITY = "com.appttude.h_mal.farmr"
val BASE_CONTENT_URI = Uri.parse("content://$CONTENT_AUTHORITY")
const val PATH_SHIFTS = "shifts"