Don't build evdev_reader for the non-root variant

This commit is contained in:
Cameron Gutman
2017-12-01 00:10:55 -08:00
parent 6264781539
commit 5c69f6716c
2 changed files with 34 additions and 18 deletions
+12
View File
@@ -23,11 +23,23 @@ android {
// version to devices running O on the Play Store.
maxSdkVersion 25
externalNativeBuild {
ndkBuild {
arguments "PRODUCT_FLAVOR=root"
}
}
applicationId "com.limelight.root"
dimension "root"
}
nonRoot {
externalNativeBuild {
ndkBuild {
arguments "PRODUCT_FLAVOR=nonRoot"
}
}
applicationId "com.limelight"
dimension "root"
}