├── .idea ├── .name ├── copyright │ └── profiles_settings.xml ├── dictionaries │ └── simone.xml ├── encodings.xml ├── vcs.xml ├── modules.xml ├── runConfigurations.xml ├── gradle.xml ├── compiler.xml └── misc.xml ├── app ├── .gitignore ├── app-release.apk ├── src │ ├── main │ │ ├── res │ │ │ ├── values │ │ │ │ ├── colors.xml │ │ │ │ ├── dimens.xml │ │ │ │ ├── attrs.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── values-w820dp │ │ │ │ └── dimens.xml │ │ │ ├── menu │ │ │ │ ├── menu_receive.xml │ │ │ │ ├── menu_read_me.xml │ │ │ │ └── menu_html_view.xml │ │ │ ├── layout │ │ │ │ ├── activity_viewdatauri.xml │ │ │ │ ├── activity_main.xml │ │ │ │ ├── activity_read_me.xml │ │ │ │ └── activity_receive.xml │ │ │ ├── values-v11 │ │ │ │ └── styles.xml │ │ │ └── raw │ │ │ │ └── readme.md │ │ ├── java │ │ │ └── com │ │ │ │ └── github │ │ │ │ └── mofosyne │ │ │ │ └── tagdrop │ │ │ │ ├── main.java │ │ │ │ ├── util │ │ │ │ ├── SystemUiHiderBase.java │ │ │ │ ├── SystemUiHiderHoneycomb.java │ │ │ │ └── SystemUiHider.java │ │ │ │ ├── viewDatauri.java │ │ │ │ ├── Receive.java │ │ │ │ └── ReadMe.java │ │ └── AndroidManifest.xml │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── github │ │ │ └── mofosyne │ │ │ └── tagdrop │ │ │ └── ApplicationTest.java │ └── Receive │ │ └── res │ │ └── raw │ │ └── readme.md ├── proguard-rules.pro ├── build.gradle └── app.iml ├── settings.gradle ├── ARTASSET └── icon │ ├── icon.png │ ├── icon.zip │ ├── appstore.png │ ├── ios │ ├── Icon.png │ ├── Icon-60.png │ ├── Icon-72.png │ ├── Icon@2x.png │ ├── Icon-72@2x.png │ ├── Icon-Small-50.png │ ├── iTunesArtwork.png │ ├── Icon-Small-50@2x.png │ ├── iTunesArtwork@2x.png │ ├── AppIcon.appiconset │ │ ├── Icon-40.png │ │ ├── Icon-76.png │ │ ├── Icon-40@2x.png │ │ ├── Icon-40@3x.png │ │ ├── Icon-60@2x.png │ │ ├── Icon-60@3x.png │ │ ├── Icon-76@2x.png │ │ ├── Icon-Small.png │ │ ├── Icon-Small@2x.png │ │ ├── Icon-Small@3x.png │ │ └── Contents.json │ └── README.md │ ├── android │ ├── playstore-icon.png │ ├── drawable-hdpi │ │ └── ic_launcher.png │ ├── drawable-ldpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ └── drawable-xxxhdpi │ │ └── ic_launcher.png │ ├── watchkit │ └── AppIcon.appiconset │ │ ├── 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 │ │ └── Contents.json │ └── icon.svg ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── exampleBarcodes └── denseRunningManQR.png ├── .gitignore ├── .gitattributes ├── gradle.properties ├── tagdrop.iml ├── gradlew.bat ├── readme.md ├── gradlew └── COPYING.txt /.idea/.name: -------------------------------------------------------------------------------- 1 | tagdrop -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /app/app-release.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/tagdrop/HEAD/app/app-release.apk -------------------------------------------------------------------------------- /ARTASSET/icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/tagdrop/HEAD/ARTASSET/icon/icon.png -------------------------------------------------------------------------------- /ARTASSET/icon/icon.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/tagdrop/HEAD/ARTASSET/icon/icon.zip -------------------------------------------------------------------------------- /ARTASSET/icon/appstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/tagdrop/HEAD/ARTASSET/icon/appstore.png -------------------------------------------------------------------------------- /ARTASSET/icon/ios/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/tagdrop/HEAD/ARTASSET/icon/ios/Icon.png -------------------------------------------------------------------------------- /ARTASSET/icon/ios/Icon-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/tagdrop/HEAD/ARTASSET/icon/ios/Icon-60.png -------------------------------------------------------------------------------- /ARTASSET/icon/ios/Icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/tagdrop/HEAD/ARTASSET/icon/ios/Icon-72.png -------------------------------------------------------------------------------- /ARTASSET/icon/ios/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/tagdrop/HEAD/ARTASSET/icon/ios/Icon@2x.png -------------------------------------------------------------------------------- /ARTASSET/icon/ios/Icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/tagdrop/HEAD/ARTASSET/icon/ios/Icon-72@2x.png -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/tagdrop/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /.idea/dictionaries/simone.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /ARTASSET/icon/ios/Icon-Small-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/tagdrop/HEAD/ARTASSET/icon/ios/Icon-Small-50.png -------------------------------------------------------------------------------- /ARTASSET/icon/ios/iTunesArtwork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/tagdrop/HEAD/ARTASSET/icon/ios/iTunesArtwork.png -------------------------------------------------------------------------------- /ARTASSET/icon/ios/Icon-Small-50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/tagdrop/HEAD/ARTASSET/icon/ios/Icon-Small-50@2x.png -------------------------------------------------------------------------------- /ARTASSET/icon/ios/iTunesArtwork@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/tagdrop/HEAD/ARTASSET/icon/ios/iTunesArtwork@2x.png -------------------------------------------------------------------------------- /exampleBarcodes/denseRunningManQR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/tagdrop/HEAD/exampleBarcodes/denseRunningManQR.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .gradle 2 | /local.properties 3 | /.idea/workspace.xml 4 | /.idea/libraries 5 | .DS_Store 6 | /build 7 | /captures 8 | -------------------------------------------------------------------------------- /ARTASSET/icon/android/playstore-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/tagdrop/HEAD/ARTASSET/icon/android/playstore-icon.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #66000000 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/tagdrop/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/tagdrop/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/tagdrop/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ARTASSET/icon/ios/AppIcon.appiconset/Icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/tagdrop/HEAD/ARTASSET/icon/ios/AppIcon.appiconset/Icon-40.png -------------------------------------------------------------------------------- /ARTASSET/icon/ios/AppIcon.appiconset/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/tagdrop/HEAD/ARTASSET/icon/ios/AppIcon.appiconset/Icon-76.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/tagdrop/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ARTASSET/icon/android/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/tagdrop/HEAD/ARTASSET/icon/android/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /ARTASSET/icon/android/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/tagdrop/HEAD/ARTASSET/icon/android/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /ARTASSET/icon/android/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/tagdrop/HEAD/ARTASSET/icon/android/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /ARTASSET/icon/android/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/tagdrop/HEAD/ARTASSET/icon/android/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ARTASSET/icon/android/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/tagdrop/HEAD/ARTASSET/icon/android/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ARTASSET/icon/ios/AppIcon.appiconset/Icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/tagdrop/HEAD/ARTASSET/icon/ios/AppIcon.appiconset/Icon-40@2x.png -------------------------------------------------------------------------------- /ARTASSET/icon/ios/AppIcon.appiconset/Icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/tagdrop/HEAD/ARTASSET/icon/ios/AppIcon.appiconset/Icon-40@3x.png -------------------------------------------------------------------------------- /ARTASSET/icon/ios/AppIcon.appiconset/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/tagdrop/HEAD/ARTASSET/icon/ios/AppIcon.appiconset/Icon-60@2x.png -------------------------------------------------------------------------------- /ARTASSET/icon/ios/AppIcon.appiconset/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/tagdrop/HEAD/ARTASSET/icon/ios/AppIcon.appiconset/Icon-60@3x.png -------------------------------------------------------------------------------- /ARTASSET/icon/ios/AppIcon.appiconset/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/tagdrop/HEAD/ARTASSET/icon/ios/AppIcon.appiconset/Icon-76@2x.png -------------------------------------------------------------------------------- /ARTASSET/icon/ios/AppIcon.appiconset/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/tagdrop/HEAD/ARTASSET/icon/ios/AppIcon.appiconset/Icon-Small.png -------------------------------------------------------------------------------- /ARTASSET/icon/android/drawable-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/tagdrop/HEAD/ARTASSET/icon/android/drawable-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ARTASSET/icon/ios/AppIcon.appiconset/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/tagdrop/HEAD/ARTASSET/icon/ios/AppIcon.appiconset/Icon-Small@2x.png -------------------------------------------------------------------------------- /ARTASSET/icon/ios/AppIcon.appiconset/Icon-Small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/tagdrop/HEAD/ARTASSET/icon/ios/AppIcon.appiconset/Icon-Small@3x.png -------------------------------------------------------------------------------- /ARTASSET/icon/watchkit/AppIcon.appiconset/Icon-24@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/tagdrop/HEAD/ARTASSET/icon/watchkit/AppIcon.appiconset/Icon-24@2x.png -------------------------------------------------------------------------------- /ARTASSET/icon/watchkit/AppIcon.appiconset/Icon-27.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/tagdrop/HEAD/ARTASSET/icon/watchkit/AppIcon.appiconset/Icon-27.5@2x.png -------------------------------------------------------------------------------- /ARTASSET/icon/watchkit/AppIcon.appiconset/Icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/tagdrop/HEAD/ARTASSET/icon/watchkit/AppIcon.appiconset/Icon-29@2x.png -------------------------------------------------------------------------------- /ARTASSET/icon/watchkit/AppIcon.appiconset/Icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/tagdrop/HEAD/ARTASSET/icon/watchkit/AppIcon.appiconset/Icon-29@3x.png -------------------------------------------------------------------------------- /ARTASSET/icon/watchkit/AppIcon.appiconset/Icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/tagdrop/HEAD/ARTASSET/icon/watchkit/AppIcon.appiconset/Icon-40@2x.png -------------------------------------------------------------------------------- /ARTASSET/icon/watchkit/AppIcon.appiconset/Icon-44@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/tagdrop/HEAD/ARTASSET/icon/watchkit/AppIcon.appiconset/Icon-44@2x.png -------------------------------------------------------------------------------- /ARTASSET/icon/watchkit/AppIcon.appiconset/Icon-86@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/tagdrop/HEAD/ARTASSET/icon/watchkit/AppIcon.appiconset/Icon-86@2x.png -------------------------------------------------------------------------------- /ARTASSET/icon/watchkit/AppIcon.appiconset/Icon-98@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/tagdrop/HEAD/ARTASSET/icon/watchkit/AppIcon.appiconset/Icon-98@2x.png -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 6 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Wed Aug 26 22:14:06 AEST 2015 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.4-all.zip 7 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 64dp 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/menu/menu_receive.xml: -------------------------------------------------------------------------------- 1 | 5 | 7 | 8 | -------------------------------------------------------------------------------- /app/src/main/res/menu/menu_read_me.xml: -------------------------------------------------------------------------------- 1 | 5 | 7 | 8 | -------------------------------------------------------------------------------- /app/src/main/res/menu/menu_html_view.xml: -------------------------------------------------------------------------------- 1 | 5 | 7 | 8 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | 7 | # Standard to msysgit 8 | *.doc diff=astextplain 9 | *.DOC diff=astextplain 10 | *.docx diff=astextplain 11 | *.DOCX diff=astextplain 12 | *.dot diff=astextplain 13 | *.DOT diff=astextplain 14 | *.pdf diff=astextplain 15 | *.PDF diff=astextplain 16 | *.rtf diff=astextplain 17 | *.RTF diff=astextplain 18 | -------------------------------------------------------------------------------- /app/src/androidTest/java/com/github/mofosyne/tagdrop/ApplicationTest.java: -------------------------------------------------------------------------------- 1 | package com.github.mofosyne.tagdrop; 2 | 3 | import android.app.Application; 4 | import android.test.ApplicationTestCase; 5 | 6 | /** 7 | * Testing Fundamentals 8 | */ 9 | public class ApplicationTest extends ApplicationTestCase { 10 | public ApplicationTest() { 11 | super(Application.class); 12 | } 13 | } -------------------------------------------------------------------------------- /app/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | tagdrop 3 | 4 | Hello world! 5 | Settings 6 | 7 | htmlview 8 | Dummy Button 9 | DUMMY\nCONTENT 10 | htmlView 11 | ReadMe 12 | Read Me 13 | main 14 | 15 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_viewdatauri.xml: -------------------------------------------------------------------------------- 1 | 10 | 11 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /app/src/main/res/values-v11/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 10 | 11 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in C:\Users\simone\AppData\Local\Android\sdk/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 18 | 19 | -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | 3 | # IDE (e.g. Android Studio) users: 4 | # Gradle settings configured through the IDE *will override* 5 | # any settings specified in this file. 6 | 7 | # For more details on how to configure your build environment visit 8 | # http://www.gradle.org/docs/current/userguide/build_environment.html 9 | 10 | # Specifies the JVM arguments used for the daemon process. 11 | # The setting is particularly useful for tweaking memory settings. 12 | # Default value: -Xmx10248m -XX:MaxPermSize=256m 13 | # org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 14 | 15 | # When configured, Gradle will run in incubating parallel mode. 16 | # This option should only be used with decoupled projects. More details, visit 17 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 18 | # org.gradle.parallel=true -------------------------------------------------------------------------------- /tagdrop.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_read_me.xml: -------------------------------------------------------------------------------- 1 | 8 | 11 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /ARTASSET/icon/ios/README.md: -------------------------------------------------------------------------------- 1 | ## iTunesArtwork & iTunesArtwork@2x (App Icon) file extension: 2 | 3 | PNG extension is prepended to these two files - 4 | 5 | While Apple suggested to omit the extension for these files, 6 | the '.png' extension is actually required for iTunesConnect submission. 7 | 8 | This is done for you so you don't have to. 9 | 10 | However, for Ad_hoc or Enterprise distirbution, the extension should be removed 11 | from the files before adding to XCode to avoid error. 12 | 13 | refs: https://developer.apple.com/library/ios/qa/qa1686/_index.html 14 | 15 | ## iTunesArtwork & iTunesArtwork@2x (App Icon) transparency handling: 16 | 17 | As images with alpha channels or transparencies cannot be set as an application's icon on 18 | iTunesConnect, all transparent pixels in your images will be converted into 19 | solid blacks. 20 | 21 | To achieve the best result, you're advised to adjust the transparency settings 22 | in your source files before converting them with makeAppIcon. 23 | 24 | refs: https://developer.apple.com/library/ios/documentation/UserExperience/Conceptual/MobileHIG/AppIcons.html 25 | -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 14 | 15 | 16 | 23 | 24 | 25 |