aboutsummaryrefslogtreecommitdiff
path: root/proguard.flags
blob: 566e53fd6925252eb39ea2eaf521975ffcf53b55 (plain)
1
2
3
4
5
6
7
8
9
10
# Stop proguard from stripping away code used by tensorflow JNI library.
-keepclassmembers class org.tensorflow.lite.NativeInterpreterWrapper {
    private long inferenceDurationNanoseconds;
}

-keep class org.tensorflow.lite.annotations.UsedByReflection
-keep @org.tensorflow.lite.annotations.UsedByReflection class *
-keepclassmembers class * {
    @org.tensorflow.lite.annotations.UsedByReflection *;
}