Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implementing Demo App for MXNet Inception Model using NNStreamer #287

Open
wants to merge 12 commits into
base: main
Choose a base branch
from
4 changes: 4 additions & 0 deletions android/example_app/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
NNFW_EXT_LIBRARY_PATH=src/main/jni/nnfw/ext
SNPE_EXT_LIBRARY_PATH=src/main/jni/snpe/lib/ext

org.gradle.parallel=true
org.gradle.daemon=true
org.gradle.jvmargs=-Xmx4000m
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,24 @@
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

<application
android:extractNativeLibs="true"
android:allowBackup="true"
android:extractNativeLibs="true"
android:icon="@drawable/nnsuite_logo"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity
android:name=".TFLiteActivity"
android:exported="false" />
<activity
android:name=".MXNetActivity"
android:exported="false" />
<activity
android:name=".MainActivity"
android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
Expand Down
Loading