first push

This commit is contained in:
bmamihai 2022-03-10 16:31:03 +02:00
commit ee2884b2ff
254 changed files with 21261 additions and 0 deletions

10
.classpath Normal file
View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="src" path="gen"/>
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/>
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/>
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.DEPENDENCIES"/>
<classpathentry kind="lib" path="libs/android-support-v4.jar"/>
<classpathentry kind="output" path="bin/classes"/>
</classpath>

33
.project Normal file
View File

@ -0,0 +1,33 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>SafeDispatch</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>com.android.ide.eclipse.adt.ResourceManagerBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>com.android.ide.eclipse.adt.PreCompilerBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>com.android.ide.eclipse.adt.ApkBuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>com.android.ide.eclipse.adt.AndroidNature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>

View File

@ -0,0 +1,3 @@
#Thu Nov 24 10:30:15 EET 2011
eclipse.preferences.version=1
filesCopiedToWebInfLib=

View File

@ -0,0 +1,12 @@
#Fri Dec 09 16:13:31 EET 2011
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
org.eclipse.jdt.core.compiler.compliance=1.6
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
org.eclipse.jdt.core.compiler.debug.localVariable=generate
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.source=1.6

75
AndroidManifest.xml Normal file
View File

@ -0,0 +1,75 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.safemobile.dispatch_demo"
android:versionCode="9"
android:versionName="1.0.9" >
<uses-sdk android:minSdkVersion="8"
android:targetSdkVersion="19" />
<!-- require OpenGL ES version 2 for Google Maps -->
<uses-feature
android:glEsVersion="0x00020000"
android:required="true"/>
<uses-permission android:name="android.permission.CAMERA"/>
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES"/>
<!-- The following two permissions are not required to use
Google Maps Android API v2, but are recommended. -->
<!--
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
-->
<uses-permission android:name="android.permission.RECORD_AUDIO"></uses-permission>
<!-- <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"></uses-permission> -->
<!-- <uses-permission android:name="android.permission.BLUETOOTH"></uses-permission> -->
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS"></uses-permission>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"></uses-permission>
<uses-feature android:name="android.hardware.camera"/>
<uses-feature android:name="android.hardware.camera.autofocus" android:required="false"/>
<uses-feature android:name="android.hardware.camera.flash" android:required="false"/>
<application
android:configChanges="orientation|screenSize"
android:icon="@drawable/icon"
android:label="@string/app_name"
android:screenOrientation="landscape"
android:theme="@style/Theme.Safedispatch">
<uses-library android:name="com.google.android.maps" android:required="false"/>
<service android:name="com.safemobile.services.TCPService" />
<meta-data android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
<meta-data
android:name="com.google.android.maps.v2.API_KEY"
android:value="@string/googleMapsApiv2" />
<activity
android:name="SDMobileActivity"
android:label="@string/app_name_demo"
android:configChanges="orientation|screenSize"
android:screenOrientation="landscape" >
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<activity android:name="SetupActivity" android:configChanges="orientation|screenSize" android:screenOrientation="landscape" ></activity>
<activity android:name="TabLayoutActivity" android:configChanges="orientation|screenSize" android:screenOrientation="landscape" ></activity>
<activity android:name="LiveActivity" android:configChanges="orientation|screenSize" android:screenOrientation="landscape" ></activity>
<activity android:name="HistoryActivity" android:configChanges="orientation|screenSize" android:screenOrientation="landscape" ></activity>
<activity android:name="MessagesActivity" android:configChanges="orientation|screenSize" android:screenOrientation="landscape" ></activity>
<activity android:name="AlarmActivity" android:configChanges="orientation|screenSize" android:screenOrientation="landscape" ></activity>
<activity android:name="RadioActivity" android:configChanges="orientation|screenSize" android:screenOrientation="landscape" ></activity>
<activity android:name="RecordingsActivity" android:configChanges="orientation|screenSize" android:screenOrientation="landscape"></activity>
<activity android:name="EmptyActivity" android:configChanges="orientation|screenSize" android:screenOrientation="landscape" ></activity>
<activity android:name="NotificationActivity" android:configChanges="orientation|screenSize" android:screenOrientation="landscape" ></activity>
</application>
</manifest>

57
AndroidManifest_Safe.xml Normal file
View File

@ -0,0 +1,57 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.safemobile.safedispatchmobile"
android:versionCode="4"
android:versionName="1.0.4" >
<uses-sdk android:minSdkVersion="7"
android:targetSdkVersion="15" />
<uses-permission android:name="android.permission.CAMERA"/>
<uses-permission android:name="android.permission.INTERNET" />
<!-- <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"></uses-permission> -->
<!-- <uses-permission android:name="android.permission.ACCESS_LOCATION"></uses-permission> -->
<!-- <uses-permission android:name="android.permission.ACCESS_GPS"></uses-permission> -->
<!-- <uses-permission android:name="android.permission.ACCESS_ASSISTED_GPS"></uses-permission> -->
<uses-permission android:name="android.permission.RECORD_AUDIO"></uses-permission>
<!-- <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"></uses-permission> -->
<!-- <uses-permission android:name="android.permission.BLUETOOTH"></uses-permission> -->
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS"></uses-permission>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"></uses-permission>
<uses-feature android:name="android.hardware.camera"/>
<uses-feature android:name="android.hardware.camera.autofocus" android:required="false"/>
<uses-feature android:name="android.hardware.camera.flash" android:required="false"/>
<application
android:configChanges="orientation|screenSize"
android:icon="@drawable/icon"
android:label="@string/app_name"
android:screenOrientation="landscape"
android:theme="@style/Theme.NoBackground">
<uses-library android:name="com.google.android.maps" android:required="false"/>
<service android:name="com.safemobile.services.TCPService" />
<activity
android:name="SDMobileActivity"
android:label="@string/app_name"
android:configChanges="orientation|screenSize"
android:screenOrientation="landscape" >
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<activity android:name="SetupActivity" android:configChanges="orientation|screenSize" android:screenOrientation="landscape" ></activity>
<activity android:name="TabLayoutActivity" android:configChanges="orientation|screenSize" android:screenOrientation="landscape" ></activity>
<activity android:name="LiveActivity" android:configChanges="orientation|screenSize" android:screenOrientation="landscape" ></activity>
<activity android:name="HistoryActivity" android:configChanges="orientation|screenSize" android:screenOrientation="landscape" ></activity>
<activity android:name="MessagesActivity" android:configChanges="orientation|screenSize" android:screenOrientation="landscape" ></activity>
<activity android:name="AlarmActivity" android:configChanges="orientation|screenSize" android:screenOrientation="landscape" ></activity>
<activity android:name="RadioActivity" android:configChanges="orientation|screenSize" android:screenOrientation="landscape" ></activity>
<activity android:name="RecordingsActivity" android:configChanges="orientation|screenSize" android:screenOrientation="landscape"></activity>
<activity android:name="EmptyActivity" android:configChanges="orientation|screenSize" android:screenOrientation="landscape" ></activity>
<activity android:name="NotificationActivity" android:configChanges="orientation|screenSize" android:screenOrientation="landscape" ></activity>
</application>
</manifest>

55
AndroidManifest_demo.xml Normal file
View File

@ -0,0 +1,55 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.safemobile.safedispatchmobiledemo"
android:versionCode="4"
android:versionName="1.0.4" >
<uses-sdk android:minSdkVersion="7"
android:targetSdkVersion="15" />
<uses-permission android:name="android.permission.CAMERA"/>
<uses-permission android:name="android.permission.INTERNET" />
<!-- <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"></uses-permission> -->
<!-- <uses-permission android:name="android.permission.ACCESS_LOCATION"></uses-permission> -->
<!-- <uses-permission android:name="android.permission.ACCESS_GPS"></uses-permission> -->
<!-- <uses-permission android:name="android.permission.ACCESS_ASSISTED_GPS"></uses-permission> -->
<uses-permission android:name="android.permission.RECORD_AUDIO"></uses-permission>
<!-- <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"></uses-permission> -->
<!-- <uses-permission android:name="android.permission.BLUETOOTH"></uses-permission> -->
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS"></uses-permission>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"></uses-permission>
<uses-feature android:name="android.hardware.camera"/>
<uses-feature android:name="android.hardware.camera.autofocus" android:required="false"/>
<uses-feature android:name="android.hardware.camera.flash" android:required="false"/>
<application
android:configChanges="orientation|screenSize"
android:icon="@drawable/icon_demo"
android:label="@string/app_name_demo"
android:screenOrientation="landscape"
android:theme="@style/Theme.NoBackground">
<uses-library android:name="com.google.android.maps" android:required="false"/>
<activity
android:name="SDMobileActivity"
android:label="@string/app_name_demo"
android:configChanges="orientation|screenSize"
android:screenOrientation="landscape" >
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<activity android:name="SetupActivity" android:configChanges="orientation|screenSize" android:screenOrientation="landscape" ></activity>
<activity android:name="TabLayoutActivity" android:configChanges="orientation|screenSize" android:screenOrientation="landscape" ></activity>
<activity android:name="LiveActivity" android:configChanges="orientation|screenSize" android:screenOrientation="landscape" ></activity>
<activity android:name="HistoryActivity" android:configChanges="orientation|screenSize" android:screenOrientation="landscape" ></activity>
<activity android:name="MessagesActivity" android:configChanges="orientation|screenSize" android:screenOrientation="landscape" ></activity>
<activity android:name="AlarmActivity" android:configChanges="orientation|screenSize" android:screenOrientation="landscape" ></activity>
<activity android:name="RadioActivity" android:configChanges="orientation|screenSize" android:screenOrientation="landscape" ></activity>
<activity android:name="RecordingsActivity" android:configChanges="orientation|screenSize" android:screenOrientation="landscape"></activity>
<activity android:name="EmptyActivity" android:configChanges="orientation|screenSize" android:screenOrientation="landscape" ></activity>
<activity android:name="NotificationActivity" android:configChanges="orientation|screenSize" android:screenOrientation="landscape" ></activity>
</application>
</manifest>

BIN
assets/Sketch_Block.ttf Normal file

Binary file not shown.

105
assets/demo_positions.txt Normal file
View File

@ -0,0 +1,105 @@
#30.1038811728358#-95.6229997426271#47#800-804 Sandy Ln, Tomball, TX 77375, USA#
#30.1070692716166#-95.6243698485196#29#810-892 Sandy Ln Tomball TX 77375 USA#
#30.1081125671044#-95.6244441960007#11#Lee Ann Tomball TX 77375 USA#
#30.1077824877575#-95.6234199274331#11#915 Sandy Ln Tomball TX 77375 USA#
#30.1073509873822#-95.624167593196#11#881 Sandy Ln, Tomball, TX 77375, USA#
#30.107178571634#-95.6247316952795#18#906-1028 Sandy Ln Tomball TX 77375 USA#
#30.1078599784523#-95.627732751891#36#1023-1109 Sandy Ln Tomball TX 77375 USA#
#30.1073052641004#-95.6291790492833#36#Quinn Rd Tomball TX 77375 USA#
#30.1038054842502#-95.6291277520359#43#Quinn Rd Tomball TX 77375 USA#
#30.1027863705531#-95.6310868542641#43#Brown Huffsmith Tomball TX 77375 USA#
#30.1038420712575#-95.6351295299828#47#Brown Huffsmith Tomball TX 77375 USA#
#30.1037284964696#-95.6383207719773#22#Brown Huffsmith Tomball TX 77375 USA#
#30.1033505983651#-95.6423987355083#47#14414 Brown Rd Tomball TX 77377 USA#
#30.101920561865#-95.6474291346967#43#14714 Brown Rd Tomball TX 77377 USA#
#30.1045657647774#-95.6499252654612#29#29764-29782 Kingbird Dr Tomball TX 77377 USA#
#30.1065424690023#-95.6498967669904#22#14807-14923 Hermit Thrush Ln Tomball TX 77377 USA#
#30.1078060828149#-95.6498815957457#18#29822 Kingbird Dr Tomball TX 77377 USA#
#30.1096951961517#-95.6499102618545#14#29838-29854 Kingbird Dr Tomball TX 77377 USA#
#30.1106302812696#-95.649914033711#22#29856-29870 Kingbird Dr Tomball TX 77377 USA#
#30.1127856876701#-95.6499348208308#18#29890-29902 Kingbird Dr Tomball TX 77377 USA#
#30.1135092973709#-95.6499343179166#14#29902 Kingbird Dr Tomball TX 77377 USA#
#30.1123635750264#-95.6499817594886#36#14901 Rock Elm Dr Tomball TX 77377 USA#
#30.1098355930299#-95.6499674264342#29#29839-29853 Kingbird Dr Tomball TX 77377 USA#
#30.1070419885218#-95.6499653309584#43#29805-29819 Kingbird Dr Tomball TX 77377 USA#
#30.1040194742382#-95.6499856989831#36#29755-29769 Kingbird Dr Tomball TX 77377 USA#
#30.1019107969478#-95.6469845585525#50#14707 Brown Rd Tomball TX 77377 USA#
#30.1032698806375#-95.6426190957427#58#14422 Brown Rd Tomball TX 77377 USA#
#30.1034989999607#-95.638874899596#14#14301-14325 Brown Rd, Tomball, TX 77375, USA#
#30.1030826708302#-95.6386199221015#40#30042 State Highway 249 Tomball TX 77375 USA#
#30.098564280197#-95.6376449391246#65#State Highway 249 Business, Northwest Harris, TX 77375, USA#
#30.0936247827485#-95.6360663753003#65#State Highway 249 Business Tomball TX 77375 USA#
#30.0898658763617#-95.6362883280963#14#14118 FM 2920 Rd Tomball TX 77377 USA#
#30.0892848847434#-95.6361206900328#25#State Highway 249 Business Tomball TX 77375 USA#
#30.0881543755531#-95.6321874819696#47#28505 State Highway 249, Tomball, TX 77375, USA#
#30.0844461796805#-95.6312056258321#32#28300 Tomball Pkwy Tomball TX 77375 USA#
#30.0845081638545#-95.6283603888005#40#13700 Medical Complex Dr Tomball TX 77375 USA#
#30.0844980636612#-95.625959476456#11#716-798 Lawrence St Tomball TX 77375 USA#
#30.0824133586138#-95.6266013626009#22#13604-13612 Michel Rd Tomball TX 77375 USA#
#30.0824242969975#-95.629511475563#36#13636 Michel Rd Tomball TX 77375 USA#
#30.0848942762241#-95.6259192433208#25#615-799 Lawrence St Tomball TX 77375 USA#
#30.0880231987685#-95.6260203290731#40#602 Lawrence St Tomball TX 77375 USA#
#30.0885672681034#-95.6261594686657#14#1016 Graham Dr Tomball TX 77375 USA#
#30.0882335845381#-95.6284199841321#22#1221 Graham Dr Tomball TX 77375 USA#
#30.0878770602867#-95.6314713321626#25#1414 Graham Dr Tomball TX 77375 USA#
#30.0847491854802#-95.6313169375062#54#28317 Tomball Pkwy, Tomball, TX 77375, USA#
#30.080287498422#-95.6298328377306#65#27802-28048 Tomball Pkwy Tomball TX 77375 USA#
#30.0726691866294#-95.6262452993542#65#27195-27225 Tomball Pkwy, Tomball, TX 77377, USA#
#30.0687036663294#-95.6245866883546#18#Tomball Pkwy, Tomball, TX 77375, USA#
#30.0668030697852#-95.6233791913837#32#13131-13149 Holderrieth Rd, Tomball, TX 77375, USA#
#30.0668518943712#-95.6216025631875#43#13022-13124 Holderrieth Rd Tomball TX 77375 USA#
#30.0669317739084#-95.6164774484932#61#12791-12969 Holderrieth Rd Tomball TX 77375 USA#
#30.0669909920543#-95.6114780623466#25#12790 Holderrieth Rd Tomball TX 77375 USA#
#30.0740579841658#-95.6113490648568#61#2206-2266 S Cherry St, Tomball, TX 77375, USA#
#30.0786141771823#-95.6114214845002#58#1700-1898 S Cherry St Tomball TX 77375 USA#
#30.0858608772978#-95.6115463748574#40#1131-1399 S Cherry St Tomball TX 77375 USA#
#30.0888565694913#-95.611600773409#22#1118-1126 S Cherry St, Tomball, TX 77375, USA#
#30.0895934645087#-95.6136170402169#11#918 Juniper Ct Tomball TX 77375 USA#
#30.0887714931741#-95.6136962492019#11#1100 S Cherry St Tomball TX 77375 USA#
#30.0880771782249#-95.6132849492133#14#1100 S Cherry St Tomball TX 77375 USA#
#30.086738797836#-95.6116090714931#36#1248 S Cherry St Tomball TX 77375 USA#
#30.0830443901941#-95.6115429382771#54#1681 S Cherry St Tomball TX 77375 USA#
#30.0787175679579#-95.6114772241563#54#1719-1819 S Cherry St Tomball TX 77375 USA#
#30.0742001831532#-95.6114100851119#58#2207-2289 S Cherry St Tomball TX 77375 USA#
#30.0695944949985#-95.611331127584#61#2510 S Cherry St Tomball TX 77375 USA#
#30.0669590989128#-95.6114313751459#14#12790 Holderrieth Rd Tomball TX 77375 USA#
#30.0669326959178#-95.6152523495257#58#12791-12969 Holderrieth Rd Tomball TX 77375 USA#
#30.0668948935345#-95.6203508935869#54#13022-13124 Holderrieth Rd, Tomball, TX 77375, USA#
#30.06693336647#-95.6230170931667#25#Aggie Expy Tomball TX 77377 USA#
#30.0649807602167#-95.6221639830619#58#26511-26899 Tomball Pkwy Tomball TX 77375 USA#
#30.0605678977445#-95.6195416208357#65#Tomball Pkwy Tomball TX 77375 USA#
#30.0560060888529#-95.6171602383256#61#26049 State Highway 249 Tomball TX 77375 USA#
#30.0541836954653#-95.6177280284464#36#13215 Boudreaux Rd Tomball TX 77377 USA#
#30.0548273837194#-95.6234616693109#40#13057-13199 Boudreaux Estates Dr Tomball TX 77377 USA#
#30.0554253906012#-95.6256067659706#29#13230-13336 Boudreaux Estates Dr Tomball TX 77377 USA#
#30.0551302637905#-95.628422498703#32#13339-13475 Boudreaux Estates Dr Tomball TX 77377 USA#
#30.056142588146#-95.6297978851944#32#25601-25899 Bourgain Dr Tomball TX 77377 USA#
#30.0580881955102#-95.6306262686849#11#13502-13598 Chateau Dr Tomball TX 77377 USA#
#30.058539477177#-95.6290103215724#14#26018 Orleans Ave Tomball TX 77375 USA#
#30.0569307804108#-95.6278732325882#22#25915 Orleans Ave Tomball TX 77377 USA#
#30.0561902811751#-95.6273104716092#18#25914 Orleans Ave Tomball TX 77377 USA#
#30.0554083753377#-95.6264045555145#25#13231-13337 Boudreaux Estates Dr Tomball TX 77377 USA#
#30.0551795912907#-95.6248366367072#22#13056-13198 Boudreaux Estates Dr Tomball TX 77377 USA#
#30.0544594600797#-95.622240928933#32#13000-13054 Boudreaux Estates Dr Tomball TX 77377 USA#
#30.0541649619117#-95.6183345429599#32#13215 Boudreaux Rd Tomball TX 77377 USA#
#30.0541812647134#-95.6163169350475#29#12814 Boudreaux Rd Tomball TX 77375 USA#
#30.0548394955695#-95.6156456284225#40#26000-26398 Tomball Pkwy Tomball TX 77375 USA#
#30.0587797863409#-95.6172499246895#61#26022 State Highway 249 Tomball TX 77375 USA#
#30.063119684346#-95.6200637295842#68#26400-26898 Tomball Pkwy Tomball TX 77375 USA#
#30.0670028943568#-95.6225595250726#50#26902 State Highway 249 Tomball TX 77375 USA#
#30.0707885809243#-95.6248711701483#58#Tomball Pkwy Tomball TX 77375 USA#
#30.074630593881#-95.6271268241107#54#27652-27676 Tomball Pkwy Tomball TX 77375 USA#
#30.0784160709009#-95.6288631353527#54#27708-27720 Tomball Pkwy Tomball TX 77375 USA#
#30.0824288651347#-95.6305284518749#43#13680-13698 Michel Rd Tomball TX 77375 USA#
#30.0857110926881#-95.6313936319202#43#28310-28378 State Highway 249 Tomball TX 77375 USA#
#30.0884892744944#-95.6321135535836#32#28520 State Highway 249 Tomball TX 77375 USA#
#30.0901297805831#-95.630494421348#36#1335-1399 Farm to Market 2920 Tomball TX 77375 USA#
#30.0916665606201#-95.6277060974389#11#1200-1262 Farm to Market 2920 Tomball TX 77375 USA#
#30.0925761647522#-95.6274783611298#32#101-299 Quinn Rd Tomball TX 77375 USA#
#30.0980335799977#-95.6283390987664#29#29619 Quinn Rd Tomball TX 77375 USA#
#30.1010427670553#-95.6285911425948#40#29610 Quinn Rd Tomball TX 77375 USA#
#30.1043387828395#-95.6290560867637#47#Quinn Rd Tomball TX 77375 USA#
#30.1073376601562#-95.6290665641427#32#Quinn Rd Tomball TX 77375 USA#
#30.1077843736857#-95.6273911893368#32#1023-1109 Sandy Ln Tomball TX 77375 USA#
#30.1070042699575#-95.6268194597214#14#1030-1198 Sandy Ln Tomball TX 77375 USA#
#30.1065399963409#-95.6278602406383#14#1055 Sandy Ln Tomball TX 77375 USA#

BIN
assets/exitwindows.mp3 Normal file

Binary file not shown.

BIN
assets/grenade.mp3 Normal file

Binary file not shown.

BIN
assets/mike.mp3 Normal file

Binary file not shown.

BIN
assets/mikee.mp3 Normal file

Binary file not shown.

BIN
assets/startwindows.mp3 Normal file

Binary file not shown.

31
assets/xmldmr.xml Normal file
View File

@ -0,0 +1,31 @@
<configuration>
<radio-id>104</radio-id>
<radio-ip>192.168.10.40</radio-ip>
<contacts>
<contact name="UNIT101" call-type="Private Call" call-id="101" section="Digital" />
<contact name="UNIT105" call-type="Private Call" call-id="105" section="Digital" />
<contact name="UNIT110" call-type="Private Call" call-id="110" section="Digital" />
<contact name="UNIT102" call-type="Private Call" call-id="102" section="Digital" />
<contact name="UNIT106" call-type="Private Call" call-id="106" section="Digital" />
<contact name="UNIT107" call-type="Private Call" call-id="107" section="Digital" />
<contact name="UNIT103" call-type="Private Call" call-id="103" section="Digital" />
<contact name="UNIT108" call-type="Private Call" call-id="108" section="Digital" />
<contact name="UNIT109" call-type="Private Call" call-id="109" section="Digital" />
<contact name="UNIT111" call-type="Private Call" call-id="111" section="Digital" />
<contact name="Call1" call-type="Group Call" call-id="1" section="Digital" />
<contact name="Call2" call-type="Group Call" call-id="2" section="Digital" />
</contacts>
<zones>
<zone position="1" name="Zone1">
<channel position="1" name="Channel1" />
<channel position="2" name="Channel2" />
<channel position="3" name="Channel3" />
<channel position="4" name="Channel4" />
</zone>
<zone position="3" name="Zone2">
<channel position="1" name="Ch1 ZN2" />
<channel position="2" name="Ch2 ZN2" />
<channel position="3" name="Ch3 ZN2" />
</zone>
</zones>
</configuration>

BIN
libs/android-support-v4.jar Normal file

Binary file not shown.

119
lint.xml Normal file
View File

@ -0,0 +1,119 @@
<?xml version="1.0" encoding="UTF-8"?>
<lint>
<issue id="AdapterViewChildren" severity="ignore" />
<issue id="AllowBackup" severity="ignore" />
<issue id="AlwaysShowAction" severity="ignore" />
<issue id="ButtonCase" severity="ignore" />
<issue id="ButtonOrder" severity="ignore" />
<issue id="CommitPrefEdits" severity="ignore" />
<issue id="ContentDescription" severity="ignore" />
<issue id="DalvikOverride" severity="ignore" />
<issue id="DefaultLocale" severity="ignore" />
<issue id="Deprecated" severity="ignore" />
<issue id="DisableBaselineAlignment" severity="ignore" />
<issue id="DrawAllocation" severity="ignore" />
<issue id="DuplicateActivity" severity="ignore" />
<issue id="DuplicateIds" severity="ignore" />
<issue id="DuplicateIncludedIds" severity="ignore" />
<issue id="EnforceUTF8" severity="ignore" />
<issue id="ExportedActivity" severity="ignore" />
<issue id="ExportedContentProvider" severity="ignore" />
<issue id="ExportedReceiver" severity="ignore" />
<issue id="ExportedService" severity="ignore" />
<issue id="ExtraText" severity="ignore" />
<issue id="ExtraTranslation" severity="ignore" />
<issue id="FloatMath" severity="ignore" />
<issue id="GifUsage" severity="ignore" />
<issue id="GrantAllUris" severity="ignore" />
<issue id="GridLayout" severity="ignore" />
<issue id="HandlerLeak" severity="ignore" />
<issue id="HardcodedDebugMode" severity="ignore" />
<issue id="HardcodedText" severity="ignore" />
<issue id="IconColors" severity="ignore" />
<issue id="IconDensities" severity="ignore" />
<issue id="IconDipSize" severity="ignore" />
<issue id="IconDuplicates" severity="ignore" />
<issue id="IconDuplicatesConfig" severity="ignore" />
<issue id="IconExtension" severity="ignore" />
<issue id="IconLocation" severity="ignore" />
<issue id="IconMissingDensityFolder" severity="ignore" />
<issue id="IconNoDpi" severity="ignore" />
<issue id="InOrMmUsage" severity="ignore" />
<issue id="InconsistentArrays" severity="ignore" />
<issue id="InefficientWeight" severity="ignore" />
<issue id="InnerclassSeparator" severity="ignore" />
<issue id="Instantiatable" severity="ignore" />
<issue id="LabelFor" severity="ignore" />
<issue id="LibraryCustomView" severity="ignore" />
<issue id="LocalSuppress" severity="ignore" />
<issue id="MangledCRLF" severity="ignore" />
<issue id="ManifestOrder" severity="ignore" />
<issue id="MenuTitle" severity="ignore" />
<issue id="MergeRootFrame" severity="ignore" />
<issue id="MissingId" severity="ignore" />
<issue id="MissingPrefix" severity="ignore" />
<issue id="MissingRegistered" severity="ignore" />
<issue id="MissingTranslation" severity="ignore" />
<issue id="MultipleUsesSdk" severity="ignore" />
<issue id="NamespaceTypo" severity="ignore" />
<issue id="NestedScrolling" severity="ignore" />
<issue id="NestedWeights" severity="ignore" />
<issue id="NewApi" severity="ignore" />
<issue id="ObsoleteLayoutParam" severity="ignore" />
<issue id="OldTargetApi" severity="ignore" />
<issue id="OnClick" severity="ignore" />
<issue id="Overdraw" severity="ignore" />
<issue id="PackagedPrivateKey" severity="ignore" />
<issue id="PrivateResource" severity="ignore" />
<issue id="Proguard" severity="ignore" />
<issue id="ProguardSplit" severity="ignore" />
<issue id="ProtectedPermissons" severity="ignore" />
<issue id="PxUsage" severity="ignore" />
<issue id="Registered" severity="ignore" />
<issue id="RequiredSize" severity="ignore" />
<issue id="ResourceAsColor" severity="ignore" />
<issue id="ScrollViewCount" severity="ignore" />
<issue id="ScrollViewSize" severity="ignore" />
<issue id="SdCardPath" severity="ignore" />
<issue id="SecureRandom" severity="ignore" />
<issue id="SetJavaScriptEnabled" severity="ignore" />
<issue id="ShowToast" severity="ignore" />
<issue id="SimpleDateFormat" severity="ignore" />
<issue id="SpUsage" severity="ignore" />
<issue id="StateListReachable" severity="ignore" />
<issue id="StringFormatCount" severity="ignore" />
<issue id="StringFormatInvalid" severity="ignore" />
<issue id="StringFormatMatches" severity="ignore" />
<issue id="StyleCycle" severity="ignore" />
<issue id="SuspiciousImport" severity="ignore" />
<issue id="TextFields" severity="ignore" />
<issue id="TextViewEdits" severity="ignore" />
<issue id="TooDeepLayout" severity="ignore" />
<issue id="TooManyViews" severity="ignore" />
<issue id="TypographyDashes" severity="ignore" />
<issue id="TypographyEllipsis" severity="ignore" />
<issue id="TypographyFractions" severity="ignore" />
<issue id="TypographyOther" severity="ignore" />
<issue id="Typos" severity="ignore" />
<issue id="UniquePermission" severity="ignore" />
<issue id="UnknownId" severity="ignore" />
<issue id="UnknownIdInLayout" severity="ignore" />
<issue id="UnlocalizedSms" severity="ignore" />
<issue id="UnusedNamespace" severity="ignore" />
<issue id="UnusedResources" severity="ignore" />
<issue id="UseCompoundDrawables" severity="ignore" />
<issue id="UseSparseArrays" severity="ignore" />
<issue id="UseValueOf" severity="ignore" />
<issue id="UselessLeaf" severity="ignore" />
<issue id="UselessParent" severity="ignore" />
<issue id="UsesMinSdkAttributes" severity="ignore" />
<issue id="ValidFragment" severity="ignore" />
<issue id="ViewConstructor" severity="ignore" />
<issue id="ViewTag" severity="ignore" />
<issue id="Wakelock" severity="ignore" />
<issue id="WorldReadableFiles" severity="ignore" />
<issue id="WorldWriteableFiles" severity="ignore" />
<issue id="WrongFolder" severity="ignore" />
<issue id="WrongManifestParent" severity="ignore" />
<issue id="WrongViewCast" severity="ignore" />
</lint>

57
proguard.cfg Normal file
View File

@ -0,0 +1,57 @@
-optimizationpasses 5
-dontusemixedcaseclassnames
-dontskipnonpubliclibraryclasses
-dontpreverify
-verbose
-optimizations !code/simplification/arithmetic,!field/*,!class/merging/*
-keep public class * extends android.app.Activity
-keep public class * extends android.app.Application
-keep public class * extends android.app.Service
-keep public class * extends android.content.BroadcastReceiver
-keep public class * extends android.content.ContentProvider
-keep public class * extends android.app.backup.BackupAgentHelper
-keep public class * extends android.preference.Preference
-keep public class com.android.vending.licensing.ILicensingService
-keepclasseswithmembernames class * {
native <methods>;
}
-keepclasseswithmembers class * {
public <init>(android.content.Context, android.util.AttributeSet);
}
-keepclasseswithmembers class * {
public <init>(android.content.Context, android.util.AttributeSet, int);
}
-keepclassmembers class * extends android.app.Activity {
public void *(android.view.View);
}
-keepclassmembers enum * {
public static **[] values();
public static ** valueOf(java.lang.String);
}
-keep class * implements android.os.Parcelable {
public static final android.os.Parcelable$Creator *;
}
-keep class * extends java.util.ListResourceBundle {
protected Object[][] getContents();
}
-keep public class com.google.android.gms.common.internal.safeparcel.SafeParcelable {
public static final *** NULL;
}
-keepnames @com.google.android.gms.common.annotation.KeepName class *
-keepclassmembernames class * {
@ccom.google.android.gms.common.annotation.KeepName *;
}
-keepnames class * implements android.os.Parcelable {
public static final ** CREATOR;
}

14
project.properties Normal file
View File

@ -0,0 +1,14 @@
# This file is automatically generated by Android Tools.
# Do not modify this file -- YOUR CHANGES WILL BE ERASED!
#
# This file must be checked in Version Control Systems.
#
# To customize properties used by the Ant build system use,
# "ant.properties", and override values to adapt the script to your
# project structure.
# Project target.
target=Google Inc.:Google APIs:18
android.library.reference.1=..\\LibSafeMobile
android.library.reference.2=../LibGooglePlayServices

9
res/anim/alpha.xml Normal file
View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<set
xmlns:android="http://schemas.android.com/apk/res/android">
<alpha
android:fromAlpha="0.0"
android:startOffset="2000"
android:toAlpha="1.0"
android:duration="5000" />
</set>

9
res/anim/realpha.xml Normal file
View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<set
xmlns:android="http://schemas.android.com/apk/res/android">
<alpha
android:fromAlpha="1.0"
android:startOffset="2000"
android:toAlpha="0.0"
android:duration="5000" />
</set>

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

BIN
res/drawable-hdpi/back.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 64 KiB

View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:state_pressed="true"
android:drawable="@drawable/balloon_overlay_close_over" />
<item
android:state_pressed="false"
android:drawable="@drawable/balloon_overlay_close" />
</selector>

View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:state_pressed="true"
android:drawable="@drawable/balloon_overlay_focused" />
<item
android:state_pressed="false"
android:drawable="@drawable/balloon_overlay_unfocused" />
</selector>

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.9 KiB

BIN
res/drawable-hdpi/bg_sd.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 134 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 134 KiB

BIN
res/drawable-hdpi/bg_sn.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 129 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 148 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

BIN
res/drawable-hdpi/icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

BIN
res/drawable-hdpi/img01.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

BIN
res/drawable-hdpi/img02.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

BIN
res/drawable-hdpi/img03.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

BIN
res/drawable-hdpi/img04.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

BIN
res/drawable-hdpi/ip.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

BIN
res/drawable-hdpi/label.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 123 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<animation-list xmlns:android="http://schemas.android.com/apk/res/android"
android:oneshot="true">
<item android:drawable="@drawable/img01" android:duration="200" />
<item android:drawable="@drawable/img02" android:duration="200" />
<item android:drawable="@drawable/img03" android:duration="200" />
<item android:drawable="@drawable/img04" android:duration="200" />
</animation-list>

BIN
res/drawable-hdpi/login.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 59 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

BIN
res/drawable-hdpi/map.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.5 KiB

BIN
res/drawable-hdpi/play.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.6 KiB

Some files were not shown because too many files have changed in this diff Show More