From aabd88d4fb814fb524cd8ccab02753f12fb959db Mon Sep 17 00:00:00 2001 From: Lucas Oskorep Date: Sun, 14 Apr 2019 18:42:51 -0500 Subject: [PATCH] adding in gitignores --- android-tflite/.gitignore | 80 +++++++++++++++++++++ iOS-tflite/.gitignore | 2 + iOS-tflite/AppIcon.xcassets/Swift.gitignore | 78 ++++++++++++++++++++ iOS-tflite/data/.gitignore | 0 4 files changed, 160 insertions(+) create mode 100755 android-tflite/.gitignore create mode 100755 iOS-tflite/.gitignore create mode 100755 iOS-tflite/AppIcon.xcassets/Swift.gitignore create mode 100755 iOS-tflite/data/.gitignore diff --git a/android-tflite/.gitignore b/android-tflite/.gitignore new file mode 100755 index 0000000..2c17da7 --- /dev/null +++ b/android-tflite/.gitignore @@ -0,0 +1,80 @@ +# Built application files +*.apk +*.ap_ +*.aab + +# Files for the ART/Dalvik VM +*.dex + +# Java class files +*.class + +# Generated files +bin/ +gen/ +out/ + +# Gradle files +.gradle/ +build/ + +# Local configuration file (sdk path, etc) +local.properties + +# Proguard folder generated by Eclipse +proguard/ + +# Log Files +*.log + +# Android Studio Navigation editor temp files +.navigation/ + +# Android Studio captures folder +captures/ + +# IntelliJ +*.iml +.idea/workspace.xml +.idea/tasks.xml +.idea/gradle.xml +.idea/assetWizardSettings.xml +.idea/dictionaries +.idea/libraries +.idea/caches +# Android Studio 3 in .gitignore file. +.idea/caches/build_file_checksums.ser +.idea/modules.xml + +# Keystore files +# Uncomment the following lines if you do not want to check your keystore files in. +#*.jks +#*.keystore + +# External native build folder generated in Android Studio 2.2 and later +.externalNativeBuild + +# Google Services (e.g. APIs or Firebase) +# google-services.json + +# Freeline +freeline.py +freeline/ +freeline_project_description.json + +# fastlane +fastlane/report.xml +fastlane/Preview.html +fastlane/screenshots +fastlane/test_output +fastlane/readme.md + +# Version control +vcs.xml + +# lint +lint/intermediates/ +lint/generated/ +lint/outputs/ +lint/tmp/ +# lint/reports/ \ No newline at end of file diff --git a/iOS-tflite/.gitignore b/iOS-tflite/.gitignore new file mode 100755 index 0000000..a21ec83 --- /dev/null +++ b/iOS-tflite/.gitignore @@ -0,0 +1,2 @@ +/data/*.txt +/data/*lite diff --git a/iOS-tflite/AppIcon.xcassets/Swift.gitignore b/iOS-tflite/AppIcon.xcassets/Swift.gitignore new file mode 100755 index 0000000..7b0d62b --- /dev/null +++ b/iOS-tflite/AppIcon.xcassets/Swift.gitignore @@ -0,0 +1,78 @@ +# Xcode +# +# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore + +## Build generated +build/ +DerivedData/ + +## Various settings +*.pbxuser +!default.pbxuser +*.mode1v3 +!default.mode1v3 +*.mode2v3 +!default.mode2v3 +*.perspectivev3 +!default.perspectivev3 +xcuserdata/ + +## Other +*.moved-aside +*.xccheckout +*.xcscmblueprint + +## Obj-C/Swift specific +*.hmap +*.ipa +*.dSYM.zip +*.dSYM + +## Playgrounds +timeline.xctimeline +playground.xcworkspace + +# Swift Package Manager +# +# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies. +# Packages/ +# Package.pins +# Package.resolved +.build/ + +# CocoaPods +# +# We recommend against adding the Pods directory to your .gitignore. However +# you should judge for yourself, the pros and cons are mentioned at: +# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control +# +# Pods/ +# +# Add this line if you want to avoid checking in source code from the Xcode workspace +# *.xcworkspace + +# Carthage +# +# Add this line if you want to avoid checking in source code from Carthage dependencies. +# Carthage/Checkouts + +Carthage/Build + +# fastlane +# +# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the +# screenshots whenever they are needed. +# For more information about the recommended setup visit: +# https://docs.fastlane.tools/best-practices/source-control/#source-control + +fastlane/report.xml +fastlane/Preview.html +fastlane/screenshots/**/*.png +fastlane/test_output + +# Code Injection +# +# After new code Injection tools there's a generated folder /iOSInjectionProject +# https://github.com/johnno1962/injectionforxcode + +iOSInjectionProject/ diff --git a/iOS-tflite/data/.gitignore b/iOS-tflite/data/.gitignore new file mode 100755 index 0000000..e69de29