We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 847aee3 commit 892e18aCopy full SHA for 892e18a
Android/APIExample/app/src/main/java/io/agora/api/example/MainApplication.java
@@ -26,6 +26,9 @@ private void initExamples() {
26
try {
27
Set<String> packageName = ClassUtils.getFileNameByPackageName(this, "io.agora.api.example.examples");
28
for (String name : packageName) {
29
+ if (android.os.Build.VERSION.SDK_INT < android.os.Build.VERSION_CODES.N && name.contains("io.agora.api.example.examples.advanced.ARCore")) {
30
+ continue;
31
+ }
32
Class<?> aClass = Class.forName(name);
33
Annotation[] declaredAnnotations = aClass.getAnnotations();
34
for (Annotation annotation : declaredAnnotations) {
0 commit comments