mirror of https://github.com/auygun/kaliber.git
Remove provider_name resValue from build.gradle
This commit is contained in:
parent
915b896636
commit
64c63d4184
|
@ -27,7 +27,6 @@ android {
|
|||
helloWorld {
|
||||
dimension 'game'
|
||||
applicationId 'com.kaliber.helloworld'
|
||||
resValue "string", "provider_name", "${applicationId}.fileprovider"
|
||||
resValue "string", "app_name", "Kaliber Hello World"
|
||||
manifestPlaceholders = [appIcon: "@mipmap/ic_launcher"]
|
||||
ext {
|
||||
|
@ -37,7 +36,6 @@ android {
|
|||
demo {
|
||||
dimension 'game'
|
||||
applicationId 'com.kaliber.woom'
|
||||
resValue "string", "provider_name", "${applicationId}.fileprovider"
|
||||
resValue "string", "app_name", "Kaliber Demo"
|
||||
manifestPlaceholders = [appIcon: "@mipmap/ic_launcher"]
|
||||
ext {
|
||||
|
@ -47,7 +45,6 @@ android {
|
|||
woom {
|
||||
dimension 'game'
|
||||
applicationId 'com.woom.game'
|
||||
resValue "string", "provider_name", "${applicationId}.fileprovider"
|
||||
resValue "string", "app_name", "woom"
|
||||
resValue "string", "interstitial_ad_unit_id", "ca-app-pub-1321063817979967/8373182022"
|
||||
manifestPlaceholders = [appIcon: "@mipmap/ic_launcher"]
|
||||
|
|
|
@ -36,7 +36,7 @@
|
|||
|
||||
<provider
|
||||
android:name="androidx.core.content.FileProvider"
|
||||
android:authorities="@string/provider_name"
|
||||
android:authorities="${applicationId}.fileprovider"
|
||||
android:exported="false"
|
||||
android:grantUriPermissions="true">
|
||||
<meta-data
|
||||
|
|
Loading…
Reference in New Issue