android-manifest 相关问题

清单提供有关Android系统应用程序的基本信息

SecurityException:子包元素的数量超出了查询中允许的最大值

在 android 14 上,在 AndroidManifest 中的元素内添加超过 1000 个元素时出现错误。 原因:java.lang.SecurityException:子包元素数量超出最大值

回答 1 投票 0

React Native android:networkSecurityConfig 使应用程序可以启动

我需要使用这条线 android:networkSecurityConfig="@xml/network_security_config" 在 AndroidManifest 内,因为我需要加载不受信任的网站。但这使我的应用程序无法加载...

回答 1 投票 0

为什么我在 Android 版 flutter 中遇到 minsdk 版本兼容性错误?

我正在使用 Flutter,并在 android 文件夹上运行 ./gradlew clean build 但我收到以下错误: 失败:构建失败并出现异常。 * 出了什么问题: 任务':

回答 1 投票 0

android:exported 需要为元素显式指定 <activity#com.iteratec.tangoApp.MainActivity>

我正在构建一个 Flutter 应用程序,在向 AndroidManifest 添加新的意图过滤器后,出现了以下错误: android:exported 需要为元素显式指定 我正在构建一个 Flutter 应用程序,在向 AndroidManifest 添加新的意图过滤器后,出现了此错误: android:exported 需要为元素 显式指定。当相应组件定义了意图过滤器时,面向 Android 12 及更高版本的应用需要为 android:exported 指定显式值。 我已经将 android:exported="true" 添加到具有意图过滤器的活动中,但仍然出现同样的问题。 这是整个 MainActivity 文件: <manifest xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" package="com.example.myApp"> <application android:label="myApp" android:name="${applicationName}" android:icon="@mipmap/ic_launcher"> <activity android:name=".MainActivity" android:label="@string/myApp"> android:exported="true" android:launchMode="singleTop" android:taskAffinity="" android:theme="@style/LaunchTheme" android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode" android:hardwareAccelerated="true" android:windowSoftInputMode="adjustResize" tools:ignore="MissingClass"> <meta-data android:name="io.flutter.embedding.android.NormalTheme" android:resource="@style/NormalTheme" /> <!-- Intent Filter for launching the app --> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> <!-- Intent Filter for App Links --> <intent-filter> <action android:name="android.intent.action.VIEW" /> <category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.BROWSABLE" /> <data android:host="my-app.com" android:scheme="app" /> </intent-filter> </activity> <meta-data android:name="flutterEmbedding" android:value="2" /> </application> <!-- Required to query activities that can process text, see: https://developer.android.com/training/package-visibility and https://developer.android.com/reference/android/content/Intent#ACTION_PROCESS_TEXT. In particular, this is used by the Flutter engine in io.flutter.plugin.text.ProcessTextPlugin. --> <queries> <intent> <action android:name="android.intent.action.PROCESS_TEXT" /> <data android:mimeType="text/plain" /> </intent> </queries> 关于这里可能出什么问题有什么想法吗? 您不小心在 > 的末尾添加了 android:label: android:label="@string/myApp"> 删除它,一切都会好起来: android:label="@string/myApp"

回答 1 投票 0

Android - 用于调试和发布模式的应用程序图标

如果我们在清单中设置 android:debuggable=true 并且像在 iOS 中那样设置 android:debuggable=false ,是否可以为应用程序设置单独的图标?

回答 10 投票 0

创建Expo Config插件文件来修改Android清单

我需要创建一个expo插件文件并在app.json中调用它,以便它在android清单中添加以下属性。 我需要创建一个 expo 插件文件并在 app.json 中调用它,以便在 android 清单中添加以下属性。 <uses-feature android:name="android.hardware.touchscreen" android:required="false"/> <uses-feature android:name="android.hardware.faketouch" android:required="false"/> <uses-feature android:name="android.hardware.telephony" android:required="false"/> <uses-feature android:name="android.hardware.camera" android:required="false"/> <uses-feature android:name="android.hardware.nfc" android:required="false"/> <uses-feature android:name="android.hardware.location.gps" android:required="false"/> <uses-feature android:name="android.hardware.microphone" android:required="false"/> <uses-feature android:name="android.hardware.sensor" android:required="false"/> <intent-filter> ... <category android:name="android.intent.category.LEANBACK_LAUNCHER"/> </intent-filter> 我是一名使用 React Native Expo 的 javascript 开发人员,所以我没有自己创建文件的技能,我花了一整天的时间试图弄清楚这一点,但基本上没有来自 Expo 的有用文档。 我在这里找到了类似的帖子:link 我按照以下步骤添加了意图过滤器 在您的博览会项目中创建插件文件夹 创建js文件“example-file.js” 在文件中我添加了以下代码 const { AndroidConfig, withAndroidManifest } = require("@expo/config-plugins"); const { getMainApplicationOrThrow, addMetaDataItemToMainApplication } = AndroidConfig.Manifest; function addAttributesToMainActivity(androidManifest) { const { manifest } = androidManifest; if (!Array.isArray(manifest["application"])) { console.warn( "withWordlLineIntentActivity: No application array in manifest?" ); return androidManifest; } const application = manifest["application"].find( (item) => item.$["android:name"] === ".MainApplication" ); if (!application) { console.warn("withWordlLineIntentActivity: No .MainApplication?"); return androidManifest; } if (!Array.isArray(application["activity"])) { console.warn( "withWordlLineIntentActivity: No activity array in .MainApplication?" ); return androidManifest; } const activity = application["activity"].find( (item) => item.$["android:name"] === ".MainActivity" ); if (!activity) { console.warn("withWordlLineIntentActivity: No .MainActivity?"); return androidManifest; } const action = {}; action.$ = { ...action.$, ...{ "android:name": "com.domain.action.PROCESS_TRANSACTION", }, }; const intent = { action: action }; activity["intent-filter"].push(intent); return androidManifest; } module.exports = function withIntentActivity(config) { return withAndroidManifest(config, (config) => { config.modResults = addAttributesToMainActivity(config.modResults); return config; }); }; 在 app.json 添加对创建的插件的引用 “插件”:[ “./plugins/example-intent.js” ], 运行 expo prebuild 来查看结果 希望对你有一点帮助。 这里是通过自定义配置插件编辑 Android Manifest 的当前文档。 https://docs.expo.dev/config-plugins/development-and-debugging/#modify-androidmanifestxml import { AndroidConfig, ConfigPlugin, withAndroidManifest } from 'expo/config-plugins'; import { ExpoConfig } from 'expo/config'; // Using helpers keeps error messages unified and helps cut down on XML format changes. const { addMetaDataItemToMainApplication, getMainApplicationOrThrow } = AndroidConfig.Manifest; export const withMyCustomConfig: ConfigPlugin = config => { return withAndroidManifest(config, async config => { // Modifiers can be async, but try to keep them fast. config.modResults = await setCustomConfigAsync(config, config.modResults); return config; }); }; // Splitting this function out of the mod makes it easier to test. async function setCustomConfigAsync( config: Pick<ExpoConfig, 'android'>, androidManifest: AndroidConfig.Manifest.AndroidManifest ): Promise<AndroidConfig.Manifest.AndroidManifest> { const appId = 'my-app-id'; // Get the <application /> tag and assert if it doesn't exist. const mainApplication = getMainApplicationOrThrow(androidManifest); addMetaDataItemToMainApplication( mainApplication, // value for `android:name` 'my-app-id-key', // value for `android:value` appId ); return androidManifest; }

回答 2 投票 0

无法找到明确的活动类。您是否在 AndroidManifest.xml 中声明了此活动

我正在尝试按照此问题中接受的答案在我的应用程序中实现 PreferenceActivity 我得到上面的异常 android.content.ActivityNotFoundException:无法找到显式

回答 11 投票 0

我需要忽略哪些 Android 配置更改以防止系统语言更改时破坏/创建 Activity?

我的基于 Vulkan 的游戏基于 NativeActivity,需要避免所有活动销毁/重新创建配置更改,因为这样做需要大量的加载时间。我目前有

回答 1 投票 0

“错误:升级到 targetSDK 34 后需要“RECEIVER_EXPORTED”或“RECEIVER_NOT_EXPORTED”以进行 Firebase FCM 应用内调用

我最近将应用程序的目标 SDK 从 33 升级到 34。更新后,我开始遇到以下错误: 当

回答 1 投票 0

通过不同意图访问时如何处理应用程序的多个实例

我刚刚添加了用户通过备份自定义文件类型在我的应用程序中恢复数据的功能。当使用我的应用程序从文件资源管理器打开文件时,我的根(主)活动将打开,...

回答 2 投票 0

如何查找 Android Google Play 服务版本

我正在开发一个需要使用谷歌地图的android项目。我一直在阅读教程,并且必须将其添加到 AndroidManifest.xml 文件中: 我正在开发一个需要使用谷歌地图的android项目。我一直在阅读教程,我必须将其添加到 AndroidManifest.xml 文件中: <meta-data android:name="com.google.android.gms.version" android:value="@integer/google_play_services_version" /> 问题是,我不知道用什么数字替换“@integer/google_play_services_version”。 如果有人知道我应该在那里输入什么,以及如何获取该整数值,我将不胜感激。 无需更换。值 @integer/google_play_services_version 可以解决这个问题。只需确保您拥有已更新的最新 Google Play 服务库即可。 如果您想添加号码而不是google-play-services_lib>res>values>version.xml,您可以在@integer/google_play_services_version下找到它。 <?xml version="1.0" encoding="utf-8"?> <resources> <integer name="google_play_services_version">4030500</integer> </resources> 这里是在您的项目中设置 Google Play 服务的官方指南。 仅供参考,您可以在此文件夹中找到版本号: ~\android-studio\sdk\extras\google\m2repository\com\google\android\gms\play-services 享受吧。 您提到的错误可能是因为没有添加 Google Play 服务库作为项目的库,请执行以下操作。 选择文件 -> 导入 -> Android -> 将现有 Android 代码放入工作区,然后单击下一步。 选择浏览,输入 /extras/google/google_play_services/libproject/google-play-services_lib,然后单击“打开”。 3.选择将项目复制到工作区并单击完成。 将 Google Play 服务标记为库:右键单击 google-play-services_lib 项目,然后选择“属性”>“Android”。勾选是库选项。 右键单击您的项目 -> 转到属性 -> 单击 android -> 单击添加按钮 -> 单击 google_play_services_lib -> 确定 -> 应用 -> 确定清理你的项目 这将消除您的错误 如果您使用的是 gradle,只需确保您拥有更新的 google play services 版本(使用 SDK 管理器下载)并将其放入项目模块依赖项部分: compile 'com.google.android.gms:play-services:+' 重要提示: 一般来说,删除正在编译的源的具体版本并不是一个好的做法。 我曾经遇到过这样的情况:我必须使用 Google Play 服务的 Froyo 版本,而该版本不需要标签。事实上,XML 条目 google_play_services_version 在 Google Play 服务库的 Froyo+ 版本中不存在 在您的清单中 -: <meta-data android:name="com.google.android.gms.version" android:value="@integer/google_play_services_version" /> 在你的 gradle 中 -: implementation 'com.google.android.gms:play-services-ads:23.4.0' 对于最新版本 -: https://mvnrepository.com/artifact/com.google.android.gms/play-services-ads 享受!!

回答 6 投票 0

Android 和 iOS 中 google meet 的包名称是什么?

我想知道Android和iOS中Google meet的包名称。目前我知道 Android 清单中 Zoom 和 Teams 的包名称。这是我指定的 Android 清单代码...

回答 3 投票 0

应用程序因违反我们的恶意行为或用户数据政策以及包含安全漏洞的软件而被拒绝

我已经更新了应用程序,但被 Play 商店拒绝了,说 “我们拒绝了您的应用程序,程序包名称为 XYZ,因为它违反了我们的恶意行为或用户数据政策。如果您提交了更新...

回答 2 投票 0

android.adservices.AD_SERVICES_CONFIG Android 清单错误

所以我的清单合并、play-services-measurement-api 和 play-services-ads-lite 遇到问题,所以我尝试添加 所以我的清单合并、play-services-measurement-api 和 play-services-ads-lite 遇到问题,所以我尝试添加 <meta-data android:name="android.adservices.AD_SERVICES_CONFIG" android:resource="@xml/gma_ad_services_config" /> 覆盖错误,以便合并可以忽略一个错误,但它不起作用 有人有解决办法吗? 我什至尝试注释掉广告初始化,但它不起作用, 这是我的问题?如果我降级 AGP 并降低 Google Ads SDK,错误会得到解决吗? 我尝试评论广告,但错误没有解决 我尝试将 Google Ads SDK 降低到 22.X.X,但没有成功。 我也尝试将 AGP 更新到 9.0 但没有成功。 显然,Android studio 使用最新的依赖项和库构建您的应用程序,因此您必须回溯您的库以支持您的 android API <meta-data android:name="android.adservices.AD_SERVICES_CONFIG" android:resource="@xml/gma_ad_services_config" /> 这只适用于 Android 13+ https://developers.google.com/admob/android/quick-start 因此,如果您正在构建 anroid 10+ 应用程序,请将您的广告 sdk 回溯到可能是 22.X,而不是当前的 23.X 祝开发者好运,希望这会有所帮助:)

回答 1 投票 0

将“android:enabled”指定为 false 的 <activity-alias> 的目的是什么?

我正在查看一个应用程序,该应用程序描述了 Android 清单中的多个元素,但“android:enabled”为 false。文档指出属性指定 目标是否活动...

回答 1 投票 0

“请确保 android 清单是有效的 XML 文档,然后重试”Flutter 'androidManifest.xml' 错误

我正在使用 VS Code 进行 Flutter 开发。 这是我的 AndroidManifest.xml 文件: 我正在使用 VS Code 进行 Flutter 开发。 这是我的AndroidManifest.xml文件: <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.object_detection"> <!-- io.flutter.app.FlutterApplication is an android.app.Application that calls FlutterMain.startInitialization(this); in its onCreate method. In most cases you can leave this as-is, but you if you want to provide additional functionality it is fine to subclass or reimplement FlutterApplication and put your custom class here. --> <application android:name="io.flutter.app.FlutterApplication" android:label="Object Detector" android:icon="@mipmap/launcher_icon"> <meta-data android:name="com.google.android.gms.ads.APPLICATIN_ID" android:value <activity android:name=".MainActivity" android:launchMode="singleTop" android:theme="@style/LaunchTheme" android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode" android:hardwareAccelerated="true" android:windowSoftInputMode="adjustResize"> <!-- Specifies an Android theme to apply to this Activity as soon as the Android process has started. This theme is visible to the user while the Flutter UI initializes. After that, this theme continues to determine the Window background behind the Flutter UI. --> <meta-data android:name="io.flutter.embedding.android.NormalTheme" android:resource="@style/NormalTheme" /> <!-- Displays an Android View that continues showing the launch screen Drawable until Flutter paints its first frame, then this splash screen fades out. A splash screen is useful to avoid any visual gap between the end of Android's launch screen and the painting of Flutter's first frame. --> <meta-data android:name="io.flutter.embedding.android.SplashScreenDrawable" android:resource="@drawable/launch_background" /> <intent-filter> <action android:name="android.intent.action.MAIN"/> <category android:name="android.intent.category.LAUNCHER"/> </intent-filter> </activity> <!-- Don't delete the meta-data below. This is used by the Flutter tool to generate GeneratedPluginRegistrant.java --> <meta-data android:name="flutterEmbedding" android:value="2" /> </application> </manifest> 我收到此错误: 请确保 Android 清单是有效的 XML 文档,然后重试 我想我有双引号或其他问题。 您的 android:value 不在参数中。这是更正的清单: <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.object_detection"> <!-- io.flutter.app.FlutterApplication is an android.app.Application that calls FlutterMain.startInitialization(this); in its onCreate method. In most cases you can leave this as-is, but you if you want to provide additional functionality it is fine to subclass or reimplement FlutterApplication and put your custom class here. --> <application android:name="io.flutter.app.FlutterApplication" android:label="Object Detector" android:icon="@mipmap/launcher_icon"> <meta-data android:name="com.google.android.gms.ads.APPLICATIN_ID" <activity android:name=".MainActivity" android:launchMode="singleTop" android:theme="@style/LaunchTheme" android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode" android:hardwareAccelerated="true" android:windowSoftInputMode="adjustResize"> <!-- Specifies an Android theme to apply to this Activity as soon as the Android process has started. This theme is visible to the user while the Flutter UI initializes. After that, this theme continues to determine the Window background behind the Flutter UI. --> <meta-data android:name="io.flutter.embedding.android.NormalTheme" android:resource="@style/NormalTheme" /> <!-- Displays an Android View that continues showing the launch screen Drawable until Flutter paints its first frame, then this splash screen fades out. A splash screen is useful to avoid any visual gap between the end of Android's launch screen and the painting of Flutter's first frame. --> <meta-data android:name="io.flutter.embedding.android.SplashScreenDrawable" android:resource="@drawable/launch_background" /> <intent-filter> <action android:name="android.intent.action.MAIN"/> <category android:name="android.intent.category.LAUNCHER"/> </intent-filter> </activity> <!-- Don't delete the meta-data below. This is used by the Flutter tool to generate GeneratedPluginRegistrant.java --> <meta-data android:name="flutterEmbedding" android:value="2" /> </application> </manifest>

回答 1 投票 0

品牌特定的`AndroidManifest.xml`未合并到.NET MAUI项目中

我正在开发一个个人项目,我需要为不同品牌的应用程序使用不同的 AndroidManifest.xml 文件。每个品牌都有自己的清单文件,位于单独的目录中。豪...

回答 1 投票 0

AndroidManifest.xml 丢失尝试重新导入插件

我在统一实施 google admob 时遇到问题。 我从 github 下载了最新版本的 Unity 插件,但缺少 xml 清单,我不知道如何获取该文件。我试过了

回答 6 投票 0

如何在Java中没有系统权限的情况下在每个应用程序启动时以编程方式清除应用程序缓存?

我正在开发一个Android应用程序,每次应用程序启动时我都需要清除应用程序的缓存。我目前正在使用此代码来尝试删除缓存: 文件目录 = 新文件(cacheFilePath); 如果(目录

回答 1 投票 0

Google Play 商店显示“您的设备与此版本不兼容”

我将我的应用程序从 Android 13 升级到 14(即 API 级别 34)。我能够部署该应用程序并在本地运行得很好。 当我部署到 Google Play 商店后,商店现在显示“您的设备...

回答 1 投票 0

© www.soinside.com 2019 - 2024. All rights reserved.