Skip to content
This repository was archived by the owner on Feb 4, 2025. It is now read-only.

Commit a97d3a1

Browse files
committed
Uses Wikitude SDK 9.3 for samples
1 parent c09f834 commit a97d3a1

File tree

62 files changed

+105
-459
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+105
-459
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,20 +28,22 @@ Sample projects for Android and iOS demoing the most common use-cases.
2828
2929
### Known issues
3030
31-
* It is a known issue that when trying to generate a release Android apk in Flutter, the following error can happen:
31+
* It is a known issue (https://github.com/flutter/flutter/issues/32756) that when trying to generate a release Android apk in Flutter, the following error can happen:
3232
3333
```
3434
AndroidRuntime: java.lang.UnsatisfiedLinkError: dalvik.system.PathClassLoader[DexPathList[[zip file "/data/app/com.wikitude.fluttersamples/base.apk"],nativeLibraryDirectories=[/data/app/com.wikitude.fluttersamples/lib/arm, /data/app/com.wikitude.fluttersamples/base.apk!/lib/armeabi-v7a, /vendor/lib, /system/lib]]] couldn't find "libflutter.so"
3535
```
3636
37-
Because of that, if you build the application in release mode, you will have to put the following code inside `wikitude\_flutter_app/android/app/build.gradle` at the end of the `defaultConfig` section:
37+
It means that the flutter library for the armeabi-v7a architecture is missing. Because of that, if you build the application in release mode, you will have to put the following code inside `wikitude\_flutter_app/android/app/build.gradle` at the end of the `defaultConfig` section to make sure that the app won't crash in any device:
3838
3939
```
4040
ndk {
4141
abiFilters 'armeabi-v7a'
4242
}
4343
```
4444
45+
Nevertheless, if you are developing for Android with Visual Studio Code the abiFilter has to be removed.
46+
4547
* Windows can't handle long paths. In case you open the project in Windows and you get the following error:
4648
4749
```
0 Bytes
Binary file not shown.
-2.64 KB
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
-320 Bytes
Binary file not shown.
-327 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
-72.5 KB
Binary file not shown.

0 commit comments

Comments
 (0)