diff --git a/android/app/build.gradle b/android/app/build.gradle index e7cd5e31..37d8f28a 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -66,7 +66,7 @@ import com.android.build.OutputFile */ apply from: "../../node_modules/react-native/react.gradle" - +apply from: "../../node_modules/react-native-vector-icons/fonts.gradle" /** * Set this to true to create two separate APKs instead of one: * - An APK that only works on ARM devices @@ -126,7 +126,6 @@ android { } dependencies { - compile project(':react-native-vector-icons') compile project(':react-native-simpledialog-android') compile project(':react-native-i18n') compile fileTree(dir: "libs", include: ["*.jar"]) diff --git a/android/app/src/main/assets/Fonts/Entypo.ttf b/android/app/src/main/assets/Fonts/Entypo.ttf deleted file mode 100644 index 1c8f5e91..00000000 Binary files a/android/app/src/main/assets/Fonts/Entypo.ttf and /dev/null differ diff --git a/android/app/src/main/assets/Fonts/EvilIcons.ttf b/android/app/src/main/assets/Fonts/EvilIcons.ttf deleted file mode 100644 index b270f985..00000000 Binary files a/android/app/src/main/assets/Fonts/EvilIcons.ttf and /dev/null differ diff --git a/android/app/src/main/assets/Fonts/FontAwesome.ttf b/android/app/src/main/assets/Fonts/FontAwesome.ttf deleted file mode 100644 index f221e50a..00000000 Binary files a/android/app/src/main/assets/Fonts/FontAwesome.ttf and /dev/null differ diff --git a/android/app/src/main/assets/Fonts/Foundation.ttf b/android/app/src/main/assets/Fonts/Foundation.ttf deleted file mode 100644 index 6cce217d..00000000 Binary files a/android/app/src/main/assets/Fonts/Foundation.ttf and /dev/null differ diff --git a/android/app/src/main/assets/Fonts/Ionicons.ttf b/android/app/src/main/assets/Fonts/Ionicons.ttf deleted file mode 100644 index 307ad889..00000000 Binary files a/android/app/src/main/assets/Fonts/Ionicons.ttf and /dev/null differ diff --git a/android/app/src/main/assets/Fonts/MaterialIcons.ttf b/android/app/src/main/assets/Fonts/MaterialIcons.ttf deleted file mode 100644 index 7015564a..00000000 Binary files a/android/app/src/main/assets/Fonts/MaterialIcons.ttf and /dev/null differ diff --git a/android/app/src/main/assets/Fonts/Octicons.ttf b/android/app/src/main/assets/Fonts/Octicons.ttf deleted file mode 100644 index 0a62bb9e..00000000 Binary files a/android/app/src/main/assets/Fonts/Octicons.ttf and /dev/null differ diff --git a/android/app/src/main/assets/Fonts/Zocial.ttf b/android/app/src/main/assets/Fonts/Zocial.ttf deleted file mode 100644 index e4ae46c6..00000000 Binary files a/android/app/src/main/assets/Fonts/Zocial.ttf and /dev/null differ diff --git a/android/app/src/main/java/com/snowflake/MainApplication.java b/android/app/src/main/java/com/snowflake/MainApplication.java index 73d51aaa..0274c47b 100644 --- a/android/app/src/main/java/com/snowflake/MainApplication.java +++ b/android/app/src/main/java/com/snowflake/MainApplication.java @@ -4,7 +4,6 @@ import android.util.Log; import com.facebook.react.ReactApplication; -import com.oblador.vectoricons.VectorIconsPackage; import com.burnweb.rnsimplealertdialog.RNSimpleAlertDialogPackage; import com.i18n.reactnativei18n.ReactNativeI18n; import com.facebook.react.ReactInstanceManager; @@ -27,7 +26,6 @@ protected boolean getUseDeveloperSupport() { protected List getPackages() { return Arrays.asList( new MainReactPackage(), - new VectorIconsPackage(), new RNSimpleAlertDialogPackage(), new ReactNativeI18n() ); diff --git a/android/settings.gradle b/android/settings.gradle index d819869a..b6e4a620 100644 --- a/android/settings.gradle +++ b/android/settings.gradle @@ -1,8 +1,6 @@ rootProject.name = 'snowflake' include ':app' -include ':react-native-vector-icons' -project(':react-native-vector-icons').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-vector-icons/android') include ':react-native-simpledialog-android' project(':react-native-simpledialog-android').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-simpledialog-android/android') include ':react-native-i18n'