Heba Mekawi
Heba Mekawi
I had that issue too and it is solved by deleting all ndk config lines in the gradle file and then adding that to defaultConfig ``` externalNativeBuild { ndkBuild {...
I have that issue too, anyone solved that issue until now ?
Hello @slimcdk did you find out how to convert it to tensorflow lite yet ? Im searching for any way to do that but dont know where to start
Hello @slimcdk , really thank you so much for your help finally I managed to convert it to a tflite file thanks to your comment I also managed to make...
Same here, any recommendation to fix it please ?
Fixed this archive issue for Xcode 14.0.1 as following After adding the package, - Open project settings - Tap on OneSignalNotificationServiceExtension target - In Frameworks and Libraries, add 'OneSignalExtension' -...
just place it in raw folder instead of assets and use the following code ``` InputStream inputStream = MyApplication.getmInstance().getResources().openRawResource(R.raw.ccert); File certificate = File.createTempFile("pre", "suf"); copyFile(inputStream, new FileOutputStream(certificate)); ``` ``` private...