Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions HiroApp/.classpath
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="src" path="gen"/>
<classpathentry 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="src" path="src"/>
<classpathentry kind="src" path="gen"/>
<classpathentry kind="output" path="bin/classes"/>
</classpath>
1 change: 1 addition & 0 deletions HiroApp/.idea/.name

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions HiroApp/.idea/HiroApp.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 22 additions & 0 deletions HiroApp/.idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions HiroApp/.idea/copyright/profiles_settings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions HiroApp/.idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions HiroApp/.idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions HiroApp/.idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

299 changes: 299 additions & 0 deletions HiroApp/.idea/workspace.xml

Large diffs are not rendered by default.

52 changes: 35 additions & 17 deletions HiroApp/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.hiroapp.main"
android:versionCode="3"
android:versionName="1.2" >
android:versionCode="4"
android:versionName="1.8" >

<uses-sdk
android:minSdkVersion="18"
Expand Down Expand Up @@ -42,10 +43,11 @@
android:glEsVersion="0x00020000"
android:required="true" />

<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" /><uses-permission android:name="android.permission.VIBRATE" />


<application
android:name="com.hiroapp.main.HeroApp_App"
android:name=".HeroApp_App"
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
Expand All @@ -60,13 +62,13 @@
<!-- Goolge Maps API Key -->
<meta-data
android:name="com.google.android.maps.v2.API_KEY"
android:value="AIzaSyCiP27wWOpZPKTSxErejOOtIN-XvGb_hw8" />
android:value="AIzaSyAqgihe1wcK2Mc8NXvSzrv1dmVlzKceW-Y" />

<!-- for local AIzaSyBE1V-AdGhaZMIihr7nzePGxFpe4P1RRbo -->
<!-- for sign apk AIzaSyCiP27wWOpZPKTSxErejOOtIN-XvGb_hw8 -->
<!-- key test AIzaSyAqgihe1wcK2Mc8NXvSzrv1dmVlzKceW-Y -->
<!-- Google Play AIzaSyCiP27wWOpZPKTSxErejOOtIN-XvGb_hw8 -->

<activity
android:name="com.hiroapp.main.SplashScreen"
android:name=".SplashScreen"
android:screenOrientation="portrait"
android:theme="@android:style/Theme.Translucent.NoTitleBar" >
<intent-filter>
Expand All @@ -76,45 +78,45 @@
</intent-filter>
</activity>
<activity
android:name="com.hiroapp.main.ScanActivity"
android:name=".ScanActivity"
android:screenOrientation="portrait"
android:windowSoftInputMode="stateHidden" >
</activity>
<activity
android:name="com.hiroapp.main.MainActivity"
android:name=".MainActivity"
android:screenOrientation="portrait"
android:windowSoftInputMode="stateHidden" >
</activity>
<activity
android:name="com.hiroapp.main.AlertActivity"
android:name=".AlertActivity"
android:screenOrientation="portrait"
android:windowSoftInputMode="stateHidden" >
</activity>
<activity
android:name="com.hiroapp.main.SettingsActivity"
android:name=".SettingsActivity"
android:screenOrientation="portrait"
android:windowSoftInputMode="stateHidden" >
</activity>
<activity
android:name="com.hiroapp.main.InfoActivity"
android:name=".InfoActivity"
android:screenOrientation="portrait"
android:windowSoftInputMode="stateHidden" >
</activity>
<activity
android:name="com.hiroapp.main.MapActivity"
android:name=".MapActivity"
android:screenOrientation="portrait" >
</activity>
<activity
android:name="com.hiroapp.main.WifiZonesActivity"
android:name=".WifiZonesActivity"
android:screenOrientation="portrait" >
</activity>
<activity
android:name="com.hiroapp.main.WifiInfoActivity"
android:name=".WifiInfoActivity"
android:screenOrientation="portrait" >
</activity>

<receiver
android:name="com.hiroapp.main.AutoStart"
android:name=".AutoStart"
android:enabled="true"
android:exported="true" >
<intent-filter>
Expand All @@ -126,7 +128,23 @@

<category android:name="android.intent.category.DEFAULT" />
</intent-filter>

<intent-filter>
<action android:name="com.hiro.android.stop"/>
</intent-filter>

<intent-filter>
<action android:name="com.hiro.android.stop2"/>
</intent-filter>
</receiver>

<activity
android:name=".Stopsound"
android:configChanges="orientation|keyboardHidden|screenSize"
android:theme="@android:style/Theme.Translucent.NoTitleBar"
android:showOnLockScreen="true" >
</activity>

</application>

</manifest>
Binary file added HiroApp/assets/fonts/Pacifico.ttf
Binary file not shown.
52 changes: 35 additions & 17 deletions HiroApp/bin/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.hiroapp.main"
android:versionCode="3"
android:versionName="1.2" >
android:versionCode="4"
android:versionName="1.8" >

<uses-sdk
android:minSdkVersion="18"
Expand Down Expand Up @@ -42,10 +43,11 @@
android:glEsVersion="0x00020000"
android:required="true" />

<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" /><uses-permission android:name="android.permission.VIBRATE" />


<application
android:name="com.hiroapp.main.HeroApp_App"
android:name=".HeroApp_App"
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
Expand All @@ -60,13 +62,13 @@
<!-- Goolge Maps API Key -->
<meta-data
android:name="com.google.android.maps.v2.API_KEY"
android:value="AIzaSyCiP27wWOpZPKTSxErejOOtIN-XvGb_hw8" />
android:value="AIzaSyAqgihe1wcK2Mc8NXvSzrv1dmVlzKceW-Y" />

<!-- for local AIzaSyBE1V-AdGhaZMIihr7nzePGxFpe4P1RRbo -->
<!-- for sign apk AIzaSyCiP27wWOpZPKTSxErejOOtIN-XvGb_hw8 -->
<!-- key test AIzaSyAqgihe1wcK2Mc8NXvSzrv1dmVlzKceW-Y -->
<!-- Google Play AIzaSyCiP27wWOpZPKTSxErejOOtIN-XvGb_hw8 -->

<activity
android:name="com.hiroapp.main.SplashScreen"
android:name=".SplashScreen"
android:screenOrientation="portrait"
android:theme="@android:style/Theme.Translucent.NoTitleBar" >
<intent-filter>
Expand All @@ -76,45 +78,45 @@
</intent-filter>
</activity>
<activity
android:name="com.hiroapp.main.ScanActivity"
android:name=".ScanActivity"
android:screenOrientation="portrait"
android:windowSoftInputMode="stateHidden" >
</activity>
<activity
android:name="com.hiroapp.main.MainActivity"
android:name=".MainActivity"
android:screenOrientation="portrait"
android:windowSoftInputMode="stateHidden" >
</activity>
<activity
android:name="com.hiroapp.main.AlertActivity"
android:name=".AlertActivity"
android:screenOrientation="portrait"
android:windowSoftInputMode="stateHidden" >
</activity>
<activity
android:name="com.hiroapp.main.SettingsActivity"
android:name=".SettingsActivity"
android:screenOrientation="portrait"
android:windowSoftInputMode="stateHidden" >
</activity>
<activity
android:name="com.hiroapp.main.InfoActivity"
android:name=".InfoActivity"
android:screenOrientation="portrait"
android:windowSoftInputMode="stateHidden" >
</activity>
<activity
android:name="com.hiroapp.main.MapActivity"
android:name=".MapActivity"
android:screenOrientation="portrait" >
</activity>
<activity
android:name="com.hiroapp.main.WifiZonesActivity"
android:name=".WifiZonesActivity"
android:screenOrientation="portrait" >
</activity>
<activity
android:name="com.hiroapp.main.WifiInfoActivity"
android:name=".WifiInfoActivity"
android:screenOrientation="portrait" >
</activity>

<receiver
android:name="com.hiroapp.main.AutoStart"
android:name=".AutoStart"
android:enabled="true"
android:exported="true" >
<intent-filter>
Expand All @@ -126,7 +128,23 @@

<category android:name="android.intent.category.DEFAULT" />
</intent-filter>

<intent-filter>
<action android:name="com.hiro.android.stop"/>
</intent-filter>

<intent-filter>
<action android:name="com.hiro.android.stop2"/>
</intent-filter>
</receiver>

<activity
android:name=".Stopsound"
android:configChanges="orientation|keyboardHidden|screenSize"
android:theme="@android:style/Theme.Translucent.NoTitleBar"
android:showOnLockScreen="true" >
</activity>

</application>

</manifest>
Binary file added HiroApp/bin/HiroApp.apk
Binary file not shown.
Loading