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 { helloWorld {
dimension 'game' dimension 'game'
applicationId 'com.kaliber.helloworld' applicationId 'com.kaliber.helloworld'
resValue "string", "provider_name", "${applicationId}.fileprovider"
resValue "string", "app_name", "Kaliber Hello World" resValue "string", "app_name", "Kaliber Hello World"
manifestPlaceholders = [appIcon: "@mipmap/ic_launcher"] manifestPlaceholders = [appIcon: "@mipmap/ic_launcher"]
ext { ext {
@ -37,7 +36,6 @@ android {
demo { demo {
dimension 'game' dimension 'game'
applicationId 'com.kaliber.woom' applicationId 'com.kaliber.woom'
resValue "string", "provider_name", "${applicationId}.fileprovider"
resValue "string", "app_name", "Kaliber Demo" resValue "string", "app_name", "Kaliber Demo"
manifestPlaceholders = [appIcon: "@mipmap/ic_launcher"] manifestPlaceholders = [appIcon: "@mipmap/ic_launcher"]
ext { ext {
@ -47,7 +45,6 @@ android {
woom { woom {
dimension 'game' dimension 'game'
applicationId 'com.woom.game' applicationId 'com.woom.game'
resValue "string", "provider_name", "${applicationId}.fileprovider"
resValue "string", "app_name", "woom" resValue "string", "app_name", "woom"
resValue "string", "interstitial_ad_unit_id", "ca-app-pub-1321063817979967/8373182022" resValue "string", "interstitial_ad_unit_id", "ca-app-pub-1321063817979967/8373182022"
manifestPlaceholders = [appIcon: "@mipmap/ic_launcher"] manifestPlaceholders = [appIcon: "@mipmap/ic_launcher"]

View File

@ -36,7 +36,7 @@
<provider <provider
android:name="androidx.core.content.FileProvider" android:name="androidx.core.content.FileProvider"
android:authorities="@string/provider_name" android:authorities="${applicationId}.fileprovider"
android:exported="false" android:exported="false"
android:grantUriPermissions="true"> android:grantUriPermissions="true">
<meta-data <meta-data