Fix applicationId to 'org.tensorflow.demo' (#12432)

For nativeBuildSystem == 'cmake' change `applicationId = 'com.tensorflow.demo'` to `applicationId = 'org.tensorflow.demo'`
Otherwise Android system treat bult app (com.tensorflow.demo) as separate one and install it alonside to org.tensorflow.demo
This commit is contained in:
Artsiom Chapialiou 2017-08-20 15:38:27 -04:00 committed by Andrew Harp
parent 084d29e67a
commit 15b953a5d8

View File

@ -79,7 +79,7 @@ android {
if (nativeBuildSystem == 'cmake') {
defaultConfig {
applicationId = 'com.tensorflow.demo'
applicationId = 'org.tensorflow.demo'
minSdkVersion 21
targetSdkVersion 23
ndk {