├── .classpath ├── .gitignore ├── .project ├── .settings ├── com.aptana.editor.common.prefs ├── org.eclipse.jdt.apt.core.prefs └── org.eclipse.jdt.core.prefs ├── CHANGELOG.txt ├── LICENSE ├── LICENSE.txt ├── README.md ├── android ├── .clang-format ├── Resources │ └── README.md ├── build.properties ├── build.xml ├── dist │ ├── geofence.jar │ └── ti.android.geofence-android-1.0.10.zip ├── java-sources.txt ├── lib │ ├── README │ └── gson-2.8.2.jar ├── libs │ ├── arm64-v8a │ │ └── libti.android.geofence.so │ ├── armeabi-v7a │ │ └── libti.android.geofence.so │ └── x86 │ │ └── libti.android.geofence.so ├── manifest ├── platform │ ├── README.md │ └── android │ │ └── res │ │ ├── drawable-hdpi │ │ ├── ic_my_location_black_24dp.png │ │ └── ic_public_black_48dp.png │ │ ├── drawable-mdpi │ │ ├── ic_my_location_black_24dp.png │ │ └── ic_public_black_48dp.png │ │ ├── drawable-xhdpi │ │ ├── ic_my_location_black_24dp.png │ │ └── ic_public_black_48dp.png │ │ ├── drawable-xxhdpi │ │ ├── ic_my_location_black_24dp.png │ │ └── ic_public_black_48dp.png │ │ └── drawable-xxxhdpi │ │ ├── ic_my_location_black_24dp.png │ │ └── ic_public_black_48dp.png ├── src │ └── ti │ │ └── android │ │ └── geofence │ │ ├── Constants.java │ │ ├── GeofenceBroadcastReceiver.java │ │ ├── GeofenceErrorMessages.java │ │ ├── GeofenceModule.java │ │ ├── GeofenceTransitionsJobIntentService.java │ │ ├── JavascriptService.java │ │ ├── OnRebootBroadcastReceiver.java │ │ └── PendingNotificationActivity.java └── timodule.xml ├── documentation └── index.md └── example ├── Android Test.zip ├── Android Test ├── .project ├── .settings │ └── com.aptana.editor.common.prefs ├── CHANGELOG.txt ├── LICENSE ├── LICENSE.txt ├── README ├── Resources │ ├── LocationService.js │ ├── android │ │ ├── appicon.png │ │ └── images │ │ │ ├── res-hdpi │ │ │ ├── appicon.png │ │ │ └── default.png │ │ │ ├── res-mdpi │ │ │ ├── appicon.png │ │ │ └── default.png │ │ │ ├── res-xhdpi │ │ │ ├── appicon.png │ │ │ └── default.png │ │ │ ├── res-xxhdpi │ │ │ ├── appicon.png │ │ │ └── default.png │ │ │ └── res-xxxhdpi │ │ │ ├── appicon.png │ │ │ └── default.png │ ├── app.js │ └── ui │ │ └── GeofenceActivity.js ├── manifest ├── modules │ └── android │ │ └── ti.android.geofence │ │ └── 1.0.5 │ │ ├── LICENSE │ │ ├── R.txt │ │ ├── documentation │ │ └── index.html │ │ ├── example │ │ └── app.js │ │ ├── geofence.jar │ │ ├── lib │ │ └── gson-2.8.2.jar │ │ ├── libs │ │ ├── arm64-v8a │ │ │ └── libti.android.geofence.so │ │ ├── armeabi-v7a │ │ │ └── libti.android.geofence.so │ │ └── x86 │ │ │ └── libti.android.geofence.so │ │ ├── manifest │ │ ├── platform │ │ ├── README.md │ │ └── android │ │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ ├── ic_my_location_black_24dp.png │ │ │ └── ic_public_black_48dp.png │ │ │ ├── drawable-mdpi │ │ │ ├── ic_my_location_black_24dp.png │ │ │ └── ic_public_black_48dp.png │ │ │ ├── drawable-xhdpi │ │ │ ├── ic_my_location_black_24dp.png │ │ │ └── ic_public_black_48dp.png │ │ │ ├── drawable-xxhdpi │ │ │ ├── ic_my_location_black_24dp.png │ │ │ └── ic_public_black_48dp.png │ │ │ ├── drawable-xxxhdpi │ │ │ ├── ic_my_location_black_24dp.png │ │ │ └── ic_public_black_48dp.png │ │ │ └── values │ │ │ └── strings.xml │ │ └── timodule.xml ├── plugins │ └── ti.alloy │ │ └── hooks │ │ └── alloy.js └── tiapp.xml └── app.js /.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/.classpath -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/.gitignore -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/.project -------------------------------------------------------------------------------- /.settings/com.aptana.editor.common.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/.settings/com.aptana.editor.common.prefs -------------------------------------------------------------------------------- /.settings/org.eclipse.jdt.apt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/.settings/org.eclipse.jdt.apt.core.prefs -------------------------------------------------------------------------------- /.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/CHANGELOG.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/README.md -------------------------------------------------------------------------------- /android/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/android/.clang-format -------------------------------------------------------------------------------- /android/Resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/android/Resources/README.md -------------------------------------------------------------------------------- /android/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/android/build.properties -------------------------------------------------------------------------------- /android/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/android/build.xml -------------------------------------------------------------------------------- /android/dist/geofence.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/android/dist/geofence.jar -------------------------------------------------------------------------------- /android/dist/ti.android.geofence-android-1.0.10.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/android/dist/ti.android.geofence-android-1.0.10.zip -------------------------------------------------------------------------------- /android/java-sources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/android/java-sources.txt -------------------------------------------------------------------------------- /android/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/android/lib/README -------------------------------------------------------------------------------- /android/lib/gson-2.8.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/android/lib/gson-2.8.2.jar -------------------------------------------------------------------------------- /android/libs/arm64-v8a/libti.android.geofence.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/android/libs/arm64-v8a/libti.android.geofence.so -------------------------------------------------------------------------------- /android/libs/armeabi-v7a/libti.android.geofence.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/android/libs/armeabi-v7a/libti.android.geofence.so -------------------------------------------------------------------------------- /android/libs/x86/libti.android.geofence.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/android/libs/x86/libti.android.geofence.so -------------------------------------------------------------------------------- /android/manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/android/manifest -------------------------------------------------------------------------------- /android/platform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/android/platform/README.md -------------------------------------------------------------------------------- /android/platform/android/res/drawable-hdpi/ic_my_location_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/android/platform/android/res/drawable-hdpi/ic_my_location_black_24dp.png -------------------------------------------------------------------------------- /android/platform/android/res/drawable-hdpi/ic_public_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/android/platform/android/res/drawable-hdpi/ic_public_black_48dp.png -------------------------------------------------------------------------------- /android/platform/android/res/drawable-mdpi/ic_my_location_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/android/platform/android/res/drawable-mdpi/ic_my_location_black_24dp.png -------------------------------------------------------------------------------- /android/platform/android/res/drawable-mdpi/ic_public_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/android/platform/android/res/drawable-mdpi/ic_public_black_48dp.png -------------------------------------------------------------------------------- /android/platform/android/res/drawable-xhdpi/ic_my_location_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/android/platform/android/res/drawable-xhdpi/ic_my_location_black_24dp.png -------------------------------------------------------------------------------- /android/platform/android/res/drawable-xhdpi/ic_public_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/android/platform/android/res/drawable-xhdpi/ic_public_black_48dp.png -------------------------------------------------------------------------------- /android/platform/android/res/drawable-xxhdpi/ic_my_location_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/android/platform/android/res/drawable-xxhdpi/ic_my_location_black_24dp.png -------------------------------------------------------------------------------- /android/platform/android/res/drawable-xxhdpi/ic_public_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/android/platform/android/res/drawable-xxhdpi/ic_public_black_48dp.png -------------------------------------------------------------------------------- /android/platform/android/res/drawable-xxxhdpi/ic_my_location_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/android/platform/android/res/drawable-xxxhdpi/ic_my_location_black_24dp.png -------------------------------------------------------------------------------- /android/platform/android/res/drawable-xxxhdpi/ic_public_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/android/platform/android/res/drawable-xxxhdpi/ic_public_black_48dp.png -------------------------------------------------------------------------------- /android/src/ti/android/geofence/Constants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/android/src/ti/android/geofence/Constants.java -------------------------------------------------------------------------------- /android/src/ti/android/geofence/GeofenceBroadcastReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/android/src/ti/android/geofence/GeofenceBroadcastReceiver.java -------------------------------------------------------------------------------- /android/src/ti/android/geofence/GeofenceErrorMessages.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/android/src/ti/android/geofence/GeofenceErrorMessages.java -------------------------------------------------------------------------------- /android/src/ti/android/geofence/GeofenceModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/android/src/ti/android/geofence/GeofenceModule.java -------------------------------------------------------------------------------- /android/src/ti/android/geofence/GeofenceTransitionsJobIntentService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/android/src/ti/android/geofence/GeofenceTransitionsJobIntentService.java -------------------------------------------------------------------------------- /android/src/ti/android/geofence/JavascriptService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/android/src/ti/android/geofence/JavascriptService.java -------------------------------------------------------------------------------- /android/src/ti/android/geofence/OnRebootBroadcastReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/android/src/ti/android/geofence/OnRebootBroadcastReceiver.java -------------------------------------------------------------------------------- /android/src/ti/android/geofence/PendingNotificationActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/android/src/ti/android/geofence/PendingNotificationActivity.java -------------------------------------------------------------------------------- /android/timodule.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/android/timodule.xml -------------------------------------------------------------------------------- /documentation/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/documentation/index.md -------------------------------------------------------------------------------- /example/Android Test.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/example/Android Test.zip -------------------------------------------------------------------------------- /example/Android Test/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/example/Android Test/.project -------------------------------------------------------------------------------- /example/Android Test/.settings/com.aptana.editor.common.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/example/Android Test/.settings/com.aptana.editor.common.prefs -------------------------------------------------------------------------------- /example/Android Test/CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/example/Android Test/CHANGELOG.txt -------------------------------------------------------------------------------- /example/Android Test/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/example/Android Test/LICENSE -------------------------------------------------------------------------------- /example/Android Test/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/example/Android Test/LICENSE.txt -------------------------------------------------------------------------------- /example/Android Test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/example/Android Test/README -------------------------------------------------------------------------------- /example/Android Test/Resources/LocationService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/example/Android Test/Resources/LocationService.js -------------------------------------------------------------------------------- /example/Android Test/Resources/android/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/example/Android Test/Resources/android/appicon.png -------------------------------------------------------------------------------- /example/Android Test/Resources/android/images/res-hdpi/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/example/Android Test/Resources/android/images/res-hdpi/appicon.png -------------------------------------------------------------------------------- /example/Android Test/Resources/android/images/res-hdpi/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/example/Android Test/Resources/android/images/res-hdpi/default.png -------------------------------------------------------------------------------- /example/Android Test/Resources/android/images/res-mdpi/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/example/Android Test/Resources/android/images/res-mdpi/appicon.png -------------------------------------------------------------------------------- /example/Android Test/Resources/android/images/res-mdpi/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/example/Android Test/Resources/android/images/res-mdpi/default.png -------------------------------------------------------------------------------- /example/Android Test/Resources/android/images/res-xhdpi/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/example/Android Test/Resources/android/images/res-xhdpi/appicon.png -------------------------------------------------------------------------------- /example/Android Test/Resources/android/images/res-xhdpi/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/example/Android Test/Resources/android/images/res-xhdpi/default.png -------------------------------------------------------------------------------- /example/Android Test/Resources/android/images/res-xxhdpi/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/example/Android Test/Resources/android/images/res-xxhdpi/appicon.png -------------------------------------------------------------------------------- /example/Android Test/Resources/android/images/res-xxhdpi/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/example/Android Test/Resources/android/images/res-xxhdpi/default.png -------------------------------------------------------------------------------- /example/Android Test/Resources/android/images/res-xxxhdpi/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/example/Android Test/Resources/android/images/res-xxxhdpi/appicon.png -------------------------------------------------------------------------------- /example/Android Test/Resources/android/images/res-xxxhdpi/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/example/Android Test/Resources/android/images/res-xxxhdpi/default.png -------------------------------------------------------------------------------- /example/Android Test/Resources/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/example/Android Test/Resources/app.js -------------------------------------------------------------------------------- /example/Android Test/Resources/ui/GeofenceActivity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/example/Android Test/Resources/ui/GeofenceActivity.js -------------------------------------------------------------------------------- /example/Android Test/manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/example/Android Test/manifest -------------------------------------------------------------------------------- /example/Android Test/modules/android/ti.android.geofence/1.0.5/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/example/Android Test/modules/android/ti.android.geofence/1.0.5/LICENSE -------------------------------------------------------------------------------- /example/Android Test/modules/android/ti.android.geofence/1.0.5/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/example/Android Test/modules/android/ti.android.geofence/1.0.5/R.txt -------------------------------------------------------------------------------- /example/Android Test/modules/android/ti.android.geofence/1.0.5/documentation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/example/Android Test/modules/android/ti.android.geofence/1.0.5/documentation/index.html -------------------------------------------------------------------------------- /example/Android Test/modules/android/ti.android.geofence/1.0.5/example/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/example/Android Test/modules/android/ti.android.geofence/1.0.5/example/app.js -------------------------------------------------------------------------------- /example/Android Test/modules/android/ti.android.geofence/1.0.5/geofence.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/example/Android Test/modules/android/ti.android.geofence/1.0.5/geofence.jar -------------------------------------------------------------------------------- /example/Android Test/modules/android/ti.android.geofence/1.0.5/lib/gson-2.8.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/example/Android Test/modules/android/ti.android.geofence/1.0.5/lib/gson-2.8.2.jar -------------------------------------------------------------------------------- /example/Android Test/modules/android/ti.android.geofence/1.0.5/libs/arm64-v8a/libti.android.geofence.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/example/Android Test/modules/android/ti.android.geofence/1.0.5/libs/arm64-v8a/libti.android.geofence.so -------------------------------------------------------------------------------- /example/Android Test/modules/android/ti.android.geofence/1.0.5/libs/armeabi-v7a/libti.android.geofence.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/example/Android Test/modules/android/ti.android.geofence/1.0.5/libs/armeabi-v7a/libti.android.geofence.so -------------------------------------------------------------------------------- /example/Android Test/modules/android/ti.android.geofence/1.0.5/libs/x86/libti.android.geofence.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/example/Android Test/modules/android/ti.android.geofence/1.0.5/libs/x86/libti.android.geofence.so -------------------------------------------------------------------------------- /example/Android Test/modules/android/ti.android.geofence/1.0.5/manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/example/Android Test/modules/android/ti.android.geofence/1.0.5/manifest -------------------------------------------------------------------------------- /example/Android Test/modules/android/ti.android.geofence/1.0.5/platform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/example/Android Test/modules/android/ti.android.geofence/1.0.5/platform/README.md -------------------------------------------------------------------------------- /example/Android Test/modules/android/ti.android.geofence/1.0.5/platform/android/res/drawable-hdpi/ic_my_location_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/example/Android Test/modules/android/ti.android.geofence/1.0.5/platform/android/res/drawable-hdpi/ic_my_location_black_24dp.png -------------------------------------------------------------------------------- /example/Android Test/modules/android/ti.android.geofence/1.0.5/platform/android/res/drawable-hdpi/ic_public_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/example/Android Test/modules/android/ti.android.geofence/1.0.5/platform/android/res/drawable-hdpi/ic_public_black_48dp.png -------------------------------------------------------------------------------- /example/Android Test/modules/android/ti.android.geofence/1.0.5/platform/android/res/drawable-mdpi/ic_my_location_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/example/Android Test/modules/android/ti.android.geofence/1.0.5/platform/android/res/drawable-mdpi/ic_my_location_black_24dp.png -------------------------------------------------------------------------------- /example/Android Test/modules/android/ti.android.geofence/1.0.5/platform/android/res/drawable-mdpi/ic_public_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/example/Android Test/modules/android/ti.android.geofence/1.0.5/platform/android/res/drawable-mdpi/ic_public_black_48dp.png -------------------------------------------------------------------------------- /example/Android Test/modules/android/ti.android.geofence/1.0.5/platform/android/res/drawable-xhdpi/ic_my_location_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/example/Android Test/modules/android/ti.android.geofence/1.0.5/platform/android/res/drawable-xhdpi/ic_my_location_black_24dp.png -------------------------------------------------------------------------------- /example/Android Test/modules/android/ti.android.geofence/1.0.5/platform/android/res/drawable-xhdpi/ic_public_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/example/Android Test/modules/android/ti.android.geofence/1.0.5/platform/android/res/drawable-xhdpi/ic_public_black_48dp.png -------------------------------------------------------------------------------- /example/Android Test/modules/android/ti.android.geofence/1.0.5/platform/android/res/drawable-xxhdpi/ic_my_location_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/example/Android Test/modules/android/ti.android.geofence/1.0.5/platform/android/res/drawable-xxhdpi/ic_my_location_black_24dp.png -------------------------------------------------------------------------------- /example/Android Test/modules/android/ti.android.geofence/1.0.5/platform/android/res/drawable-xxhdpi/ic_public_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/example/Android Test/modules/android/ti.android.geofence/1.0.5/platform/android/res/drawable-xxhdpi/ic_public_black_48dp.png -------------------------------------------------------------------------------- /example/Android Test/modules/android/ti.android.geofence/1.0.5/platform/android/res/drawable-xxxhdpi/ic_my_location_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/example/Android Test/modules/android/ti.android.geofence/1.0.5/platform/android/res/drawable-xxxhdpi/ic_my_location_black_24dp.png -------------------------------------------------------------------------------- /example/Android Test/modules/android/ti.android.geofence/1.0.5/platform/android/res/drawable-xxxhdpi/ic_public_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/example/Android Test/modules/android/ti.android.geofence/1.0.5/platform/android/res/drawable-xxxhdpi/ic_public_black_48dp.png -------------------------------------------------------------------------------- /example/Android Test/modules/android/ti.android.geofence/1.0.5/platform/android/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/example/Android Test/modules/android/ti.android.geofence/1.0.5/platform/android/res/values/strings.xml -------------------------------------------------------------------------------- /example/Android Test/modules/android/ti.android.geofence/1.0.5/timodule.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/example/Android Test/modules/android/ti.android.geofence/1.0.5/timodule.xml -------------------------------------------------------------------------------- /example/Android Test/plugins/ti.alloy/hooks/alloy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/example/Android Test/plugins/ti.alloy/hooks/alloy.js -------------------------------------------------------------------------------- /example/Android Test/tiapp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/example/Android Test/tiapp.xml -------------------------------------------------------------------------------- /example/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckameron/Ti.Android.Geofence/HEAD/example/app.js --------------------------------------------------------------------------------