├── .babelrc ├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── README.md ├── Resources ├── app-screenshots.zip ├── app-screenshots │ ├── 12.9-inch Screenshot 1.jpg │ ├── 12.9-inch Screenshot 2.jpg │ ├── 12.9-inch Screenshot 3.jpg │ ├── 12.9-inch Screenshot 4.jpg │ ├── 3.5-inch Screenshot 1.jpg │ ├── 3.5-inch Screenshot 2.jpg │ ├── 3.5-inch Screenshot 3.jpg │ ├── 3.5-inch Screenshot 4.jpg │ ├── 4-inch Screenshot 1.jpg │ ├── 4-inch Screenshot 2.jpg │ ├── 4-inch Screenshot 3.jpg │ ├── 4-inch Screenshot 4.jpg │ ├── 4.7-inch Screenshot 1.jpg │ ├── 4.7-inch Screenshot 2.jpg │ ├── 4.7-inch Screenshot 3.jpg │ ├── 4.7-inch Screenshot 4.jpg │ ├── 5.5-inch Screenshot 1.jpg │ ├── 5.5-inch Screenshot 2.jpg │ ├── 5.5-inch Screenshot 3.jpg │ ├── 5.5-inch Screenshot 4.jpg │ ├── 9.7-inch Screenshot 1.jpg │ ├── 9.7-inch Screenshot 2.jpg │ ├── 9.7-inch Screenshot 3.jpg │ └── 9.7-inch Screenshot 4.jpg ├── banner.png └── urbanDictLogo.sketch ├── Screenshot_iPhone-7_iOS-10.2_02-05-2017_12.25.18.025.png ├── __tests__ ├── index.android.js └── index.ios.js ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── urbandictionary │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── keystores │ ├── BUCK │ └── debug.keystore.properties └── settings.gradle ├── app ├── components │ ├── header.js │ ├── mainScene.js │ ├── menu.js │ ├── noInternet.js │ ├── search.js │ ├── wordCard.js │ └── words.js └── resources │ ├── AppStore.png │ ├── IconLarge.png │ ├── IconLarge@2x.png │ ├── Logo.png │ ├── Logo@2x.png │ ├── appicon │ ├── android │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-ldpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ └── playstore-icon.png │ ├── ios │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-57x57@1x.png │ │ │ ├── Icon-App-57x57@2x.png │ │ │ ├── Icon-App-57x57@3x.png │ │ │ ├── Icon-App-60x60@1x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ ├── Icon-App-76x76@3x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ ├── Icon-60.png │ │ ├── Icon-72.png │ │ ├── Icon-72@2x.png │ │ ├── Icon-Small-50.png │ │ ├── Icon-Small-50@2x.png │ │ ├── Icon.png │ │ ├── Icon@2x.png │ │ ├── ItunesArtwork.png │ │ └── ItunesArtwork@2x.png │ └── watchkit │ │ └── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-24@2x.png │ │ ├── Icon-27.5@2x.png │ │ ├── Icon-29@2x.png │ │ ├── Icon-29@3x.png │ │ ├── Icon-40@2x.png │ │ ├── Icon-44@2x.png │ │ ├── Icon-86@2x.png │ │ └── Icon-98@2x.png │ ├── bgimage.png │ ├── no_internet_text.png │ └── tombstone.png ├── index.android.js ├── index.ios.js ├── ios ├── Urban Dict.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── UrbanDictionary.xcscheme ├── UrbanDictionary │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-57x57@1x.png │ │ │ ├── Icon-App-57x57@2x.png │ │ │ ├── Icon-App-57x57@3x.png │ │ │ ├── Icon-App-60x60@1x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ ├── Icon-App-76x76@3x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ ├── Contents.json │ │ ├── Icon-60.imageset │ │ │ ├── Contents.json │ │ │ └── Icon-60.png │ │ ├── Icon-72.imageset │ │ │ ├── Contents.json │ │ │ ├── Icon-72.png │ │ │ └── Icon-72@2x.png │ │ ├── Icon-Small-50.imageset │ │ │ ├── Contents.json │ │ │ ├── Icon-Small-50.png │ │ │ └── Icon-Small-50@2x.png │ │ ├── Icon.imageset │ │ │ ├── Contents.json │ │ │ ├── Icon.png │ │ │ └── Icon@2x.png │ │ ├── IconLarge.imageset │ │ │ ├── Contents.json │ │ │ ├── IconLarge.png │ │ │ └── IconLarge@2x.png │ │ ├── ItunesArtwork.imageset │ │ │ ├── Contents.json │ │ │ ├── ItunesArtwork.png │ │ │ └── ItunesArtwork@2x.png │ │ └── Logo.imageset │ │ │ ├── Contents.json │ │ │ ├── Logo.png │ │ │ └── Logo@2x.png │ ├── Info.plist │ └── main.m └── UrbanDictionaryTests │ ├── Info.plist │ └── UrbanDictionaryTests.m └── package.json /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } -------------------------------------------------------------------------------- /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/.buckconfig -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/.gitignore -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/README.md -------------------------------------------------------------------------------- /Resources/app-screenshots.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/Resources/app-screenshots.zip -------------------------------------------------------------------------------- /Resources/app-screenshots/12.9-inch Screenshot 1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/Resources/app-screenshots/12.9-inch Screenshot 1.jpg -------------------------------------------------------------------------------- /Resources/app-screenshots/12.9-inch Screenshot 2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/Resources/app-screenshots/12.9-inch Screenshot 2.jpg -------------------------------------------------------------------------------- /Resources/app-screenshots/12.9-inch Screenshot 3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/Resources/app-screenshots/12.9-inch Screenshot 3.jpg -------------------------------------------------------------------------------- /Resources/app-screenshots/12.9-inch Screenshot 4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/Resources/app-screenshots/12.9-inch Screenshot 4.jpg -------------------------------------------------------------------------------- /Resources/app-screenshots/3.5-inch Screenshot 1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/Resources/app-screenshots/3.5-inch Screenshot 1.jpg -------------------------------------------------------------------------------- /Resources/app-screenshots/3.5-inch Screenshot 2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/Resources/app-screenshots/3.5-inch Screenshot 2.jpg -------------------------------------------------------------------------------- /Resources/app-screenshots/3.5-inch Screenshot 3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/Resources/app-screenshots/3.5-inch Screenshot 3.jpg -------------------------------------------------------------------------------- /Resources/app-screenshots/3.5-inch Screenshot 4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/Resources/app-screenshots/3.5-inch Screenshot 4.jpg -------------------------------------------------------------------------------- /Resources/app-screenshots/4-inch Screenshot 1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/Resources/app-screenshots/4-inch Screenshot 1.jpg -------------------------------------------------------------------------------- /Resources/app-screenshots/4-inch Screenshot 2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/Resources/app-screenshots/4-inch Screenshot 2.jpg -------------------------------------------------------------------------------- /Resources/app-screenshots/4-inch Screenshot 3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/Resources/app-screenshots/4-inch Screenshot 3.jpg -------------------------------------------------------------------------------- /Resources/app-screenshots/4-inch Screenshot 4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/Resources/app-screenshots/4-inch Screenshot 4.jpg -------------------------------------------------------------------------------- /Resources/app-screenshots/4.7-inch Screenshot 1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/Resources/app-screenshots/4.7-inch Screenshot 1.jpg -------------------------------------------------------------------------------- /Resources/app-screenshots/4.7-inch Screenshot 2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/Resources/app-screenshots/4.7-inch Screenshot 2.jpg -------------------------------------------------------------------------------- /Resources/app-screenshots/4.7-inch Screenshot 3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/Resources/app-screenshots/4.7-inch Screenshot 3.jpg -------------------------------------------------------------------------------- /Resources/app-screenshots/4.7-inch Screenshot 4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/Resources/app-screenshots/4.7-inch Screenshot 4.jpg -------------------------------------------------------------------------------- /Resources/app-screenshots/5.5-inch Screenshot 1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/Resources/app-screenshots/5.5-inch Screenshot 1.jpg -------------------------------------------------------------------------------- /Resources/app-screenshots/5.5-inch Screenshot 2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/Resources/app-screenshots/5.5-inch Screenshot 2.jpg -------------------------------------------------------------------------------- /Resources/app-screenshots/5.5-inch Screenshot 3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/Resources/app-screenshots/5.5-inch Screenshot 3.jpg -------------------------------------------------------------------------------- /Resources/app-screenshots/5.5-inch Screenshot 4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/Resources/app-screenshots/5.5-inch Screenshot 4.jpg -------------------------------------------------------------------------------- /Resources/app-screenshots/9.7-inch Screenshot 1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/Resources/app-screenshots/9.7-inch Screenshot 1.jpg -------------------------------------------------------------------------------- /Resources/app-screenshots/9.7-inch Screenshot 2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/Resources/app-screenshots/9.7-inch Screenshot 2.jpg -------------------------------------------------------------------------------- /Resources/app-screenshots/9.7-inch Screenshot 3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/Resources/app-screenshots/9.7-inch Screenshot 3.jpg -------------------------------------------------------------------------------- /Resources/app-screenshots/9.7-inch Screenshot 4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/Resources/app-screenshots/9.7-inch Screenshot 4.jpg -------------------------------------------------------------------------------- /Resources/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/Resources/banner.png -------------------------------------------------------------------------------- /Resources/urbanDictLogo.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/Resources/urbanDictLogo.sketch -------------------------------------------------------------------------------- /Screenshot_iPhone-7_iOS-10.2_02-05-2017_12.25.18.025.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/Screenshot_iPhone-7_iOS-10.2_02-05-2017_12.25.18.025.png -------------------------------------------------------------------------------- /__tests__/index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/__tests__/index.android.js -------------------------------------------------------------------------------- /__tests__/index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/__tests__/index.ios.js -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/urbandictionary/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/android/app/src/main/java/com/urbandictionary/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/urbandictionary/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/android/app/src/main/java/com/urbandictionary/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/android/keystores/BUCK -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'UrbanDictionary' 2 | 3 | include ':app' 4 | -------------------------------------------------------------------------------- /app/components/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/app/components/header.js -------------------------------------------------------------------------------- /app/components/mainScene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/app/components/mainScene.js -------------------------------------------------------------------------------- /app/components/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/app/components/menu.js -------------------------------------------------------------------------------- /app/components/noInternet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/app/components/noInternet.js -------------------------------------------------------------------------------- /app/components/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/app/components/search.js -------------------------------------------------------------------------------- /app/components/wordCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/app/components/wordCard.js -------------------------------------------------------------------------------- /app/components/words.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/app/components/words.js -------------------------------------------------------------------------------- /app/resources/AppStore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/app/resources/AppStore.png -------------------------------------------------------------------------------- /app/resources/IconLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/app/resources/IconLarge.png -------------------------------------------------------------------------------- /app/resources/IconLarge@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/app/resources/IconLarge@2x.png -------------------------------------------------------------------------------- /app/resources/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/app/resources/Logo.png -------------------------------------------------------------------------------- /app/resources/Logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/app/resources/Logo@2x.png -------------------------------------------------------------------------------- /app/resources/appicon/android/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/app/resources/appicon/android/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/resources/appicon/android/mipmap-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/app/resources/appicon/android/mipmap-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /app/resources/appicon/android/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/app/resources/appicon/android/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/resources/appicon/android/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/app/resources/appicon/android/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/resources/appicon/android/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/app/resources/appicon/android/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/resources/appicon/android/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/app/resources/appicon/android/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/resources/appicon/android/playstore-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/app/resources/appicon/android/playstore-icon.png -------------------------------------------------------------------------------- /app/resources/appicon/ios/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/app/resources/appicon/ios/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /app/resources/appicon/ios/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/app/resources/appicon/ios/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /app/resources/appicon/ios/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/app/resources/appicon/ios/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /app/resources/appicon/ios/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/app/resources/appicon/ios/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /app/resources/appicon/ios/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/app/resources/appicon/ios/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /app/resources/appicon/ios/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/app/resources/appicon/ios/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /app/resources/appicon/ios/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/app/resources/appicon/ios/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /app/resources/appicon/ios/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/app/resources/appicon/ios/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /app/resources/appicon/ios/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/app/resources/appicon/ios/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /app/resources/appicon/ios/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/app/resources/appicon/ios/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /app/resources/appicon/ios/AppIcon.appiconset/Icon-App-57x57@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/app/resources/appicon/ios/AppIcon.appiconset/Icon-App-57x57@1x.png -------------------------------------------------------------------------------- /app/resources/appicon/ios/AppIcon.appiconset/Icon-App-57x57@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/app/resources/appicon/ios/AppIcon.appiconset/Icon-App-57x57@2x.png -------------------------------------------------------------------------------- /app/resources/appicon/ios/AppIcon.appiconset/Icon-App-57x57@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/app/resources/appicon/ios/AppIcon.appiconset/Icon-App-57x57@3x.png -------------------------------------------------------------------------------- /app/resources/appicon/ios/AppIcon.appiconset/Icon-App-60x60@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/app/resources/appicon/ios/AppIcon.appiconset/Icon-App-60x60@1x.png -------------------------------------------------------------------------------- /app/resources/appicon/ios/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/app/resources/appicon/ios/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /app/resources/appicon/ios/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/app/resources/appicon/ios/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /app/resources/appicon/ios/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/app/resources/appicon/ios/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /app/resources/appicon/ios/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/app/resources/appicon/ios/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /app/resources/appicon/ios/AppIcon.appiconset/Icon-App-76x76@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/app/resources/appicon/ios/AppIcon.appiconset/Icon-App-76x76@3x.png -------------------------------------------------------------------------------- /app/resources/appicon/ios/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/app/resources/appicon/ios/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /app/resources/appicon/ios/Icon-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/app/resources/appicon/ios/Icon-60.png -------------------------------------------------------------------------------- /app/resources/appicon/ios/Icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/app/resources/appicon/ios/Icon-72.png -------------------------------------------------------------------------------- /app/resources/appicon/ios/Icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/app/resources/appicon/ios/Icon-72@2x.png -------------------------------------------------------------------------------- /app/resources/appicon/ios/Icon-Small-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/app/resources/appicon/ios/Icon-Small-50.png -------------------------------------------------------------------------------- /app/resources/appicon/ios/Icon-Small-50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/app/resources/appicon/ios/Icon-Small-50@2x.png -------------------------------------------------------------------------------- /app/resources/appicon/ios/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/app/resources/appicon/ios/Icon.png -------------------------------------------------------------------------------- /app/resources/appicon/ios/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/app/resources/appicon/ios/Icon@2x.png -------------------------------------------------------------------------------- /app/resources/appicon/ios/ItunesArtwork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/app/resources/appicon/ios/ItunesArtwork.png -------------------------------------------------------------------------------- /app/resources/appicon/ios/ItunesArtwork@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/app/resources/appicon/ios/ItunesArtwork@2x.png -------------------------------------------------------------------------------- /app/resources/appicon/watchkit/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/app/resources/appicon/watchkit/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /app/resources/appicon/watchkit/AppIcon.appiconset/Icon-24@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/app/resources/appicon/watchkit/AppIcon.appiconset/Icon-24@2x.png -------------------------------------------------------------------------------- /app/resources/appicon/watchkit/AppIcon.appiconset/Icon-27.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/app/resources/appicon/watchkit/AppIcon.appiconset/Icon-27.5@2x.png -------------------------------------------------------------------------------- /app/resources/appicon/watchkit/AppIcon.appiconset/Icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/app/resources/appicon/watchkit/AppIcon.appiconset/Icon-29@2x.png -------------------------------------------------------------------------------- /app/resources/appicon/watchkit/AppIcon.appiconset/Icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/app/resources/appicon/watchkit/AppIcon.appiconset/Icon-29@3x.png -------------------------------------------------------------------------------- /app/resources/appicon/watchkit/AppIcon.appiconset/Icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/app/resources/appicon/watchkit/AppIcon.appiconset/Icon-40@2x.png -------------------------------------------------------------------------------- /app/resources/appicon/watchkit/AppIcon.appiconset/Icon-44@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/app/resources/appicon/watchkit/AppIcon.appiconset/Icon-44@2x.png -------------------------------------------------------------------------------- /app/resources/appicon/watchkit/AppIcon.appiconset/Icon-86@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/app/resources/appicon/watchkit/AppIcon.appiconset/Icon-86@2x.png -------------------------------------------------------------------------------- /app/resources/appicon/watchkit/AppIcon.appiconset/Icon-98@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/app/resources/appicon/watchkit/AppIcon.appiconset/Icon-98@2x.png -------------------------------------------------------------------------------- /app/resources/bgimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/app/resources/bgimage.png -------------------------------------------------------------------------------- /app/resources/no_internet_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/app/resources/no_internet_text.png -------------------------------------------------------------------------------- /app/resources/tombstone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/app/resources/tombstone.png -------------------------------------------------------------------------------- /index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/index.android.js -------------------------------------------------------------------------------- /index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/index.ios.js -------------------------------------------------------------------------------- /ios/Urban Dict.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/ios/Urban Dict.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Urban Dict.xcodeproj/xcshareddata/xcschemes/UrbanDictionary.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/ios/Urban Dict.xcodeproj/xcshareddata/xcschemes/UrbanDictionary.xcscheme -------------------------------------------------------------------------------- /ios/UrbanDictionary/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/ios/UrbanDictionary/AppDelegate.h -------------------------------------------------------------------------------- /ios/UrbanDictionary/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/ios/UrbanDictionary/AppDelegate.m -------------------------------------------------------------------------------- /ios/UrbanDictionary/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/ios/UrbanDictionary/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/UrbanDictionary/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/ios/UrbanDictionary/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/UrbanDictionary/Images.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/ios/UrbanDictionary/Images.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /ios/UrbanDictionary/Images.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/ios/UrbanDictionary/Images.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /ios/UrbanDictionary/Images.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/ios/UrbanDictionary/Images.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /ios/UrbanDictionary/Images.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/ios/UrbanDictionary/Images.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /ios/UrbanDictionary/Images.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/ios/UrbanDictionary/Images.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /ios/UrbanDictionary/Images.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/ios/UrbanDictionary/Images.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /ios/UrbanDictionary/Images.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/ios/UrbanDictionary/Images.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /ios/UrbanDictionary/Images.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/ios/UrbanDictionary/Images.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /ios/UrbanDictionary/Images.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/ios/UrbanDictionary/Images.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /ios/UrbanDictionary/Images.xcassets/AppIcon.appiconset/Icon-App-57x57@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/ios/UrbanDictionary/Images.xcassets/AppIcon.appiconset/Icon-App-57x57@1x.png -------------------------------------------------------------------------------- /ios/UrbanDictionary/Images.xcassets/AppIcon.appiconset/Icon-App-57x57@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/ios/UrbanDictionary/Images.xcassets/AppIcon.appiconset/Icon-App-57x57@2x.png -------------------------------------------------------------------------------- /ios/UrbanDictionary/Images.xcassets/AppIcon.appiconset/Icon-App-57x57@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/ios/UrbanDictionary/Images.xcassets/AppIcon.appiconset/Icon-App-57x57@3x.png -------------------------------------------------------------------------------- /ios/UrbanDictionary/Images.xcassets/AppIcon.appiconset/Icon-App-60x60@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/ios/UrbanDictionary/Images.xcassets/AppIcon.appiconset/Icon-App-60x60@1x.png -------------------------------------------------------------------------------- /ios/UrbanDictionary/Images.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/ios/UrbanDictionary/Images.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /ios/UrbanDictionary/Images.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/ios/UrbanDictionary/Images.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /ios/UrbanDictionary/Images.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/ios/UrbanDictionary/Images.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /ios/UrbanDictionary/Images.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/ios/UrbanDictionary/Images.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /ios/UrbanDictionary/Images.xcassets/AppIcon.appiconset/Icon-App-76x76@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/ios/UrbanDictionary/Images.xcassets/AppIcon.appiconset/Icon-App-76x76@3x.png -------------------------------------------------------------------------------- /ios/UrbanDictionary/Images.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/ios/UrbanDictionary/Images.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /ios/UrbanDictionary/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/ios/UrbanDictionary/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/UrbanDictionary/Images.xcassets/Icon-60.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/ios/UrbanDictionary/Images.xcassets/Icon-60.imageset/Contents.json -------------------------------------------------------------------------------- /ios/UrbanDictionary/Images.xcassets/Icon-60.imageset/Icon-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/ios/UrbanDictionary/Images.xcassets/Icon-60.imageset/Icon-60.png -------------------------------------------------------------------------------- /ios/UrbanDictionary/Images.xcassets/Icon-72.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/ios/UrbanDictionary/Images.xcassets/Icon-72.imageset/Contents.json -------------------------------------------------------------------------------- /ios/UrbanDictionary/Images.xcassets/Icon-72.imageset/Icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/ios/UrbanDictionary/Images.xcassets/Icon-72.imageset/Icon-72.png -------------------------------------------------------------------------------- /ios/UrbanDictionary/Images.xcassets/Icon-72.imageset/Icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/ios/UrbanDictionary/Images.xcassets/Icon-72.imageset/Icon-72@2x.png -------------------------------------------------------------------------------- /ios/UrbanDictionary/Images.xcassets/Icon-Small-50.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/ios/UrbanDictionary/Images.xcassets/Icon-Small-50.imageset/Contents.json -------------------------------------------------------------------------------- /ios/UrbanDictionary/Images.xcassets/Icon-Small-50.imageset/Icon-Small-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/ios/UrbanDictionary/Images.xcassets/Icon-Small-50.imageset/Icon-Small-50.png -------------------------------------------------------------------------------- /ios/UrbanDictionary/Images.xcassets/Icon-Small-50.imageset/Icon-Small-50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/ios/UrbanDictionary/Images.xcassets/Icon-Small-50.imageset/Icon-Small-50@2x.png -------------------------------------------------------------------------------- /ios/UrbanDictionary/Images.xcassets/Icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/ios/UrbanDictionary/Images.xcassets/Icon.imageset/Contents.json -------------------------------------------------------------------------------- /ios/UrbanDictionary/Images.xcassets/Icon.imageset/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/ios/UrbanDictionary/Images.xcassets/Icon.imageset/Icon.png -------------------------------------------------------------------------------- /ios/UrbanDictionary/Images.xcassets/Icon.imageset/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/ios/UrbanDictionary/Images.xcassets/Icon.imageset/Icon@2x.png -------------------------------------------------------------------------------- /ios/UrbanDictionary/Images.xcassets/IconLarge.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/ios/UrbanDictionary/Images.xcassets/IconLarge.imageset/Contents.json -------------------------------------------------------------------------------- /ios/UrbanDictionary/Images.xcassets/IconLarge.imageset/IconLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/ios/UrbanDictionary/Images.xcassets/IconLarge.imageset/IconLarge.png -------------------------------------------------------------------------------- /ios/UrbanDictionary/Images.xcassets/IconLarge.imageset/IconLarge@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/ios/UrbanDictionary/Images.xcassets/IconLarge.imageset/IconLarge@2x.png -------------------------------------------------------------------------------- /ios/UrbanDictionary/Images.xcassets/ItunesArtwork.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/ios/UrbanDictionary/Images.xcassets/ItunesArtwork.imageset/Contents.json -------------------------------------------------------------------------------- /ios/UrbanDictionary/Images.xcassets/ItunesArtwork.imageset/ItunesArtwork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/ios/UrbanDictionary/Images.xcassets/ItunesArtwork.imageset/ItunesArtwork.png -------------------------------------------------------------------------------- /ios/UrbanDictionary/Images.xcassets/ItunesArtwork.imageset/ItunesArtwork@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/ios/UrbanDictionary/Images.xcassets/ItunesArtwork.imageset/ItunesArtwork@2x.png -------------------------------------------------------------------------------- /ios/UrbanDictionary/Images.xcassets/Logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/ios/UrbanDictionary/Images.xcassets/Logo.imageset/Contents.json -------------------------------------------------------------------------------- /ios/UrbanDictionary/Images.xcassets/Logo.imageset/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/ios/UrbanDictionary/Images.xcassets/Logo.imageset/Logo.png -------------------------------------------------------------------------------- /ios/UrbanDictionary/Images.xcassets/Logo.imageset/Logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/ios/UrbanDictionary/Images.xcassets/Logo.imageset/Logo@2x.png -------------------------------------------------------------------------------- /ios/UrbanDictionary/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/ios/UrbanDictionary/Info.plist -------------------------------------------------------------------------------- /ios/UrbanDictionary/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/ios/UrbanDictionary/main.m -------------------------------------------------------------------------------- /ios/UrbanDictionaryTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/ios/UrbanDictionaryTests/Info.plist -------------------------------------------------------------------------------- /ios/UrbanDictionaryTests/UrbanDictionaryTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/ios/UrbanDictionaryTests/UrbanDictionaryTests.m -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinbosire/Urbandict/HEAD/package.json --------------------------------------------------------------------------------