Remove provider_name resValue from build.gradle

This commit is contained in:
Attila Uygun 2023-09-06 20:26:31 +02:00
parent 915b896636
commit 64c63d4184
2 changed files with 1 additions and 4 deletions

View File

@ -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"]

View File

@ -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