Minor formatting changes

master
Keith Irwin 2017-05-23 14:31:49 -04:00
parent 0b59da214a
commit 406707e7c8
No known key found for this signature in database
GPG Key ID: 378933C743E2BBC0
3 changed files with 14 additions and 13 deletions

View File

@ -16,6 +16,8 @@
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<!-- Login Activity -->
<activity android:name=".LoginActivity">
<intent-filter android:label="@string/app_name">
<action android:name="android.intent.action.MAIN"/>
@ -23,8 +25,9 @@
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<activity
android:name=".SettingsActivity"
<!-- Settings Activity -->
<activity android:name=".SettingsActivity"
android:label="@string/settings_name"
android:parentActivityName=".LoginActivity">
@ -34,14 +37,13 @@
android:value=".LoginActivity"/>
</activity>
<service
android:name=".LocationService"
<!-- Location Service -->
<service android:name=".LocationService"
android:exported="false">
</service>
<!-- Startup on boot -->
<receiver
android:name=".BootReceiver"
<receiver android:name=".BootReceiver"
android:enabled="true"
android:exported="true"
android:permission="android.permission.RECEIVE_BOOT_COMPLETED">
@ -54,8 +56,7 @@
</receiver>
<!-- Check for Disconnection -->
<receiver
android:name=".ConnectionReceiver"
<receiver android:name=".ConnectionReceiver"
android:enabled="true"
android:exported="true">
<intent-filter>

View File

@ -44,8 +44,8 @@ public class LocationService extends Service implements GoogleApiClient.Connecti
public LocationService() {}
private String TAG = "LocationService";
final static private int ICON_ON = 2;
final int ICON_HALF = 1;
final int ICON_OFF = 0;
final static private int ICON_HALF = 1;
final static private int ICON_OFF = 0;
// Development
final String SERVER_ADDRESS = "https://dev.tracman.org";
// Production

View File

@ -5,7 +5,7 @@ buildscript {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.1'
classpath 'com.android.tools.build:gradle:2.3.2'
classpath 'com.google.gms:google-services:3.0.0'
// NOTE: Do not place your application dependencies here; they belong