Skip to content
Open
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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