mirror of
https://github.com/fork-maintainers/iceraven-browser
synced 2024-11-15 18:12:54 +00:00
[fenix] For https://github.com/mozilla-mobile/fenix/issues/21102: Build with SDK for Android 12 / API 31 (https://github.com/mozilla-mobile/fenix/pull/25494)
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
This commit is contained in:
parent
80f38dba6f
commit
379fdc5252
@ -47,6 +47,7 @@
|
|||||||
-->
|
-->
|
||||||
<activity-alias
|
<activity-alias
|
||||||
android:name="${applicationId}.App"
|
android:name="${applicationId}.App"
|
||||||
|
android:exported="true"
|
||||||
android:targetActivity=".HomeActivity">
|
android:targetActivity=".HomeActivity">
|
||||||
<intent-filter>
|
<intent-filter>
|
||||||
<action android:name="android.intent.action.MAIN" />
|
<action android:name="android.intent.action.MAIN" />
|
||||||
@ -71,6 +72,7 @@
|
|||||||
<!-- Activity alias from Fennec used by PWA launchers on the home screen -->
|
<!-- Activity alias from Fennec used by PWA launchers on the home screen -->
|
||||||
<activity-alias
|
<activity-alias
|
||||||
android:name="org.mozilla.gecko.LauncherActivity"
|
android:name="org.mozilla.gecko.LauncherActivity"
|
||||||
|
android:exported="true"
|
||||||
android:targetActivity=".IntentReceiverActivity">
|
android:targetActivity=".IntentReceiverActivity">
|
||||||
<intent-filter>
|
<intent-filter>
|
||||||
<action android:name="org.mozilla.gecko.WEBAPP" />
|
<action android:name="org.mozilla.gecko.WEBAPP" />
|
||||||
@ -79,6 +81,7 @@
|
|||||||
|
|
||||||
<activity
|
<activity
|
||||||
android:name=".HomeActivity"
|
android:name=".HomeActivity"
|
||||||
|
android:exported="true"
|
||||||
android:configChanges="keyboard|keyboardHidden|mcc|mnc|orientation|screenSize|layoutDirection|smallestScreenSize|screenLayout"
|
android:configChanges="keyboard|keyboardHidden|mcc|mnc|orientation|screenSize|layoutDirection|smallestScreenSize|screenLayout"
|
||||||
android:launchMode="singleTask"
|
android:launchMode="singleTask"
|
||||||
android:resizeableActivity="true"
|
android:resizeableActivity="true"
|
||||||
@ -268,6 +271,7 @@
|
|||||||
|
|
||||||
<service
|
<service
|
||||||
android:name=".autofill.AutofillService"
|
android:name=".autofill.AutofillService"
|
||||||
|
android:exported="true"
|
||||||
android:label="@string/app_name"
|
android:label="@string/app_name"
|
||||||
android:permission="android.permission.BIND_AUTOFILL_SERVICE">
|
android:permission="android.permission.BIND_AUTOFILL_SERVICE">
|
||||||
<intent-filter>
|
<intent-filter>
|
||||||
@ -291,9 +295,13 @@
|
|||||||
</intent-filter>
|
</intent-filter>
|
||||||
</service>
|
</service>
|
||||||
|
|
||||||
<service android:name=".downloads.DownloadService" />
|
<service
|
||||||
|
android:name=".downloads.DownloadService"
|
||||||
|
android:exported="false" />
|
||||||
|
|
||||||
<receiver
|
<receiver
|
||||||
android:name="org.mozilla.gecko.search.SearchWidgetProvider">
|
android:name="org.mozilla.gecko.search.SearchWidgetProvider"
|
||||||
|
android:exported="true">
|
||||||
<intent-filter>
|
<intent-filter>
|
||||||
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
|
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
|
||||||
</intent-filter>
|
</intent-filter>
|
||||||
|
@ -4,8 +4,10 @@
|
|||||||
|
|
||||||
<application>
|
<application>
|
||||||
|
|
||||||
<service android:name=".customtabs.CustomTabsService">
|
<service
|
||||||
<!-- Trusted Web Activities are currently only supported in nightly. -->
|
android:name=".customtabs.CustomTabsService"
|
||||||
|
android:exported="true">
|
||||||
|
<!-- Trusted Web Activities are currently only supported in nightly. -->
|
||||||
<intent-filter tools:node="removeAll" />
|
<intent-filter tools:node="removeAll" />
|
||||||
<intent-filter>
|
<intent-filter>
|
||||||
<action android:name="android.support.customtabs.action.CustomTabsService" />
|
<action android:name="android.support.customtabs.action.CustomTabsService" />
|
||||||
|
@ -13,7 +13,7 @@ object Config {
|
|||||||
// Synchronized build configuration for all modules
|
// Synchronized build configuration for all modules
|
||||||
const val compileSdkVersion = 31
|
const val compileSdkVersion = 31
|
||||||
const val minSdkVersion = 21
|
const val minSdkVersion = 21
|
||||||
const val targetSdkVersion = 30
|
const val targetSdkVersion = 31
|
||||||
|
|
||||||
@JvmStatic
|
@JvmStatic
|
||||||
private fun generateDebugVersionName(): String {
|
private fun generateDebugVersionName(): String {
|
||||||
|
Loading…
Reference in New Issue
Block a user