made recommended changes to gradle configuration

This commit is contained in:
Khosraw Azizi 2022-11-05 15:42:38 -05:00
parent bfb24ebdb3
commit e8970f189c
3 changed files with 9 additions and 9 deletions

View file

@ -20,12 +20,15 @@ android {
jniLibs.srcDirs = ['libs']
}
}
aaptOptions {
noCompress 'tflite'
}
packagingOptions {
pickFirsts += ['**/*.so']
jniLibs {
pickFirsts += ['**/*.so']
}
}
namespace 'org.firstinspires.ftc.teamcode'
androidResources {
noCompress 'tflite'
}
}

View file

@ -5,7 +5,7 @@
So it won't ultimately be as empty as it might here appear to be :-) -->
<!-- The package name here determines the package for your R class and your BuildConfig class -->
<manifest package="org.firstinspires.ftc.teamcode">
<manifest>
<application />
</manifest>

View file

@ -47,9 +47,6 @@ android {
}
}
aaptOptions {
noCompress "tflite"
}
defaultConfig {
signingConfig signingConfigs.debug