18-11-2018, Saat: 01:21
Merhaba,
Uygulamamı playstore'a atmaya çalışyorum. Get accounts izni false olmasına rağmen uygulamanızda bu izin mevcuttur hatası alıyorum
AndroidManifest.xml dosyasına girdiğimde de <uses-permission android:name="android.permission.GET_ACCOUNTS" /> şeklinde görüyorum.
Bunu bir türlü kaldıramıyorum.
Ana dizindeki androidmanifest.template.xml de şu şekilde
Uygulamamı playstore'a atmaya çalışyorum. Get accounts izni false olmasına rağmen uygulamanızda bu izin mevcuttur hatası alıyorum
AndroidManifest.xml dosyasına girdiğimde de <uses-permission android:name="android.permission.GET_ACCOUNTS" /> şeklinde görüyorum.
Bunu bir türlü kaldıramıyorum.
Ana dizindeki androidmanifest.template.xml de şu şekilde
<?xml version="1.0" encoding="utf-8"?> <!-- BEGIN_INCLUDE(manifest) --> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="%package%" android:versionCode="%versionCode%" android:versionName="%versionName%" android:installLocation="%installLocation%"> <!-- This is the platform API where NativeActivity was introduced. --> <uses-sdk android:minSdkVersion="%minSdkVersion%" android:targetSdkVersion="26" /><!--%targetSdkVersion%--> <%uses-permission%> <uses-feature android:glEsVersion="0x00020000" android:required="True"/> <application android:persistent="%persistent%" android:restoreAnyVersion="%restoreAnyVersion%" android:label="%label%" android:debuggable="%debuggable%" android:largeHeap="%largeHeap%" android:icon="%icon%" android:theme="%theme%" android:hardwareAccelerated="%hardwareAccelerated%"> <%application-meta-data%> <%services%> <service android:name="com.embarcadero.gcm.notifications.GCMIntentService" /> <!-- Our activity is a subclass of the built-in NativeActivity framework class. This will take care of integrating with our NDK code. --> <meta-data android:name="com.google.android.gms.version" android:value="4323000"/> <activity android:name="com.embarcadero.firemonkey.FMXNativeActivity" android:label="%activityLabel%" android:configChanges="orientation|keyboard|keyboardHidden|screenSize" android:launchMode="singleTask"> <!-- Tell NativeActivity the name of our .so --> <meta-data android:name="android.app.lib_name" android:value="%libNameValue%" /> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <%activity%> <%receivers%> <service android:name="com.embarcadero.gcm.notifications.GCMIntentService" /> </application> </manifest> <!-- END_INCLUDE(manifest) -->

