Eğer sisde bu hatayı alıyorsanız
Unable to create process: Serving...
 All files should be loaded. Notifying the device. Performing Incremental Install
 Failure [INSTALL_PARSE_FAILED_MANIFEST_MALFORMED: Failed parse during installPackageLl: /data/app/vmdl1374842139.tmp/base.apk (at Binary XML file line #52): com.embarcadero.firemonkey.FMXNativeActivity: Targeting S+ (version 31 and above) requires that an explicit value for android:exported be defined when intent filters are presePerforming Streamed Install
 adb: failed to install C:\Users\ahmet\OneDrive - Pamukkale
 University\Belgeler\Embarcadero\Studio\Projects\EBA\EBA6\Icasyon2\Android64\Debug\Project1\bin\Project1.apk: Failure [INSTALL_PARSE_FAILED_MANIFEST_MALFORMED: Failed parse during install PackageLl: /data/app/vmd1230699013.tmp/base.apk (at Binary XML file line #52): com.embarcadero.firemonkey.FMXNativeActivity: Targeting S+ (version 31 and above) requires that an explicit value for android:exported be defined when intent filters are present]
AndroidManifest.template.xml dosyasında aşağıdaki değişikliği yapmanız yeterli
27. satıdaki <activity tag ını tümüyle bununla değiştirin
        <activity
               android:exported="true"
            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>






