mirror of
https://gitlab.com/wheres-the-tp/ui-mobile.git
synced 2026-01-25 05:54:56 -06:00
fix missing class exception
This commit is contained in:
parent
80fa3dc953
commit
0675fb4362
2 changed files with 10 additions and 8 deletions
|
|
@ -84,13 +84,13 @@ def enableSeparateBuildPerCPUArchitecture = true
|
|||
def enableProguardInReleaseBuilds = false
|
||||
|
||||
android {
|
||||
compileSdkVersion 27
|
||||
buildToolsVersion '27.0.0'
|
||||
compileSdkVersion rootProject.ext.compileSdkVersion
|
||||
buildToolsVersion rootProject.ext.buildToolsVersion
|
||||
|
||||
defaultConfig {
|
||||
applicationId "com.aretherecookies"
|
||||
minSdkVersion 16
|
||||
targetSdkVersion 27
|
||||
minSdkVersion rootProject.ext.minSdkVersion
|
||||
targetSdkVersion rootProject.ext.targetSdkVersion
|
||||
versionCode 50
|
||||
versionName "1.0"
|
||||
ndk {
|
||||
|
|
@ -146,9 +146,10 @@ dependencies {
|
|||
compile project(':react-native-maps')
|
||||
compile project(':react-native-vector-icons')
|
||||
compile project(':react-native-image-picker')
|
||||
compile fileTree(include: ['*.jar'], dir: 'libs')
|
||||
compile 'com.facebook.react:react-native:+'
|
||||
// From node_modules
|
||||
|
||||
implementation fileTree(dir: "libs", include: ["*.jar"])
|
||||
implementation "com.android.support:appcompat-v7:${rootProject.ext.supportLibVersion}"
|
||||
implementation "com.facebook.react:react-native:+" // From node_modules
|
||||
}
|
||||
|
||||
// Run this once to be able to run the application with BUCK
|
||||
|
|
|
|||
|
|
@ -3,7 +3,8 @@
|
|||
buildscript {
|
||||
ext {
|
||||
compileSdkVersion = 27
|
||||
targetSdkVersion = 27
|
||||
minSdkVersion = 16
|
||||
targetSdkVersion = 26
|
||||
buildToolsVersion = "27.0.3"
|
||||
supportLibVersion = "27.1.1"
|
||||
googlePlayServicesVersion = "15.0.1"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue