admin管理员组文章数量:1344637
Snippet of kivy code:
from jnius import autoclass
from jnius import cast
from android import activity
Activity = autoclass('android.app.Activity')
PythonActivity = autoclass(".kivy.android.PythonActivity")
Intent = autoclass('android.content.Intent')
Uri = autoclass('android.Uri')
File = autoclass('java.io.File')
Env = autoclass('android.os.Environment')
FileProvider = autoclass('androidx.core.content.FileProvider')
activity = cast('android.app.Activity', PythonActivity.mActivity)
context = cast('android.content.ContextWrapper', activity.getApplicationContext())
#activity.bind(on_activity_result = on_activity_result)
intent = Intent(Intent.ACTION_OPEN_DOCUMENT)
intent.addCategory(Intent.CATEGORY_OPENABLE)
intent.setType("*/*")
dir = '/storage/emulated/0/Download/'
file = File(dir, "DJI_20250323065908_0008_D.SRT")
fileUri=FileProvider.getUriForFile(activity.getApplicationContext(), ".levy.srt2j.fileprovider", file)
And section of manifest as created by buildozer [1.5.0] (quotes introduced by buildozer):
"<application>
<provider
android:name="androidx.core.content.FileProvider"
android:authorities=".levy.srt2j.fileprovider"
android:grantUriPermissions="true"
android:exported="false">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/filepaths" />
</provider>
"
I have checked the actual Manifest by using AndroidStudio to analyze the apk file and it matches the above (with the quotes removed).
It appears that the authority is identical between the two files. Why, when running the app on the target (Samsung Tablet running Android 10 API 29) do I receive the error thru logcat.
本文标签:
版权声明:本文标题:android - Using Buildozer, get message "Couldn't find meta-data for provider with authority" - Stack O 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743742166a2531094.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论