There was an error while loading. Please reload this page.
1 parent 46b6447 commit d061780Copy full SHA for d061780
Samples/PluginMain/src/main/java/com/example/pluginmain/MainActivity.java
@@ -427,12 +427,6 @@ private void testProvider() {
427
return;
428
}
429
430
- //todo cailiming bugfix on android12:在非插件进程中调用插件进程的contentprovider会造成ANR
431
- //这个类中的逻辑需要适配 com.limpoxe.fairy.core.proxy.systemservice.AndroidAppIActivityManager$getContentProvider
432
- if (Build.VERSION.SDK_INT >= 31) {
433
- return;
434
- }
435
-
436
ContentValues values = new ContentValues();
437
values.put(MY_FIRST_PLUGIN_NAME, "test web" + System.currentTimeMillis());
438
Uri uri = getContentResolver().insert(CONTENT_URI, values);
0 commit comments