- New package name, because of a certificate error with the first uploaded version.
This commit is contained in:
parent
45e324fe8c
commit
517ae884b4
@ -15,6 +15,7 @@ android {
|
|||||||
targetSdkVersion 20
|
targetSdkVersion 20
|
||||||
versionCode 2
|
versionCode 2
|
||||||
versionName '1.0'
|
versionName '1.0'
|
||||||
|
signingConfig signingConfigs.config
|
||||||
}
|
}
|
||||||
buildTypes {
|
buildTypes {
|
||||||
release {
|
release {
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
package="za.org.treehouse.hypoalarm" >
|
package="za.org.treehouse.HypoAlarm" >
|
||||||
|
|
||||||
<!-- permission required to read contacts -->
|
<!-- permission required to read contacts -->
|
||||||
<uses-permission android:name="android.permission.READ_CONTACTS" />
|
<uses-permission android:name="android.permission.READ_CONTACTS" />
|
||||||
@ -8,7 +8,7 @@
|
|||||||
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
|
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
|
||||||
<!-- permission required to set an alarm -->
|
<!-- permission required to set an alarm -->
|
||||||
<uses-permission android:name="com.android.alarm.permission.SET_ALARM" />
|
<uses-permission android:name="com.android.alarm.permission.SET_ALARM" />
|
||||||
<!-- permission required to Send SMS -->
|
<!-- permission required to send an SMS -->
|
||||||
<uses-permission android:name="android.permission.SEND_SMS" />
|
<uses-permission android:name="android.permission.SEND_SMS" />
|
||||||
<!-- permission required to message the user's location -->
|
<!-- permission required to message the user's location -->
|
||||||
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
|
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
|
||||||
@ -25,7 +25,7 @@
|
|||||||
android:label="@string/app_name"
|
android:label="@string/app_name"
|
||||||
android:theme="@style/AppTheme" >
|
android:theme="@style/AppTheme" >
|
||||||
<activity
|
<activity
|
||||||
android:name="za.org.treehouse.hypoalarm.MainActivity"
|
android:name="za.org.treehouse.HypoAlarm.MainActivity"
|
||||||
android:label="@string/app_name" >
|
android:label="@string/app_name" >
|
||||||
<intent-filter>
|
<intent-filter>
|
||||||
<action android:name="android.intent.action.MAIN" />
|
<action android:name="android.intent.action.MAIN" />
|
||||||
@ -34,19 +34,19 @@
|
|||||||
</intent-filter>
|
</intent-filter>
|
||||||
</activity>
|
</activity>
|
||||||
<activity
|
<activity
|
||||||
android:name="za.org.treehouse.hypoalarm.AlarmAlertActivity"
|
android:name="za.org.treehouse.HypoAlarm.AlarmAlertActivity"
|
||||||
android:label="@string/alarm_alert"
|
android:label="@string/alarm_alert"
|
||||||
android:launchMode="singleInstance"
|
android:launchMode="singleInstance"
|
||||||
android:noHistory="true" >
|
android:noHistory="true" >
|
||||||
</activity>
|
</activity>
|
||||||
|
|
||||||
<receiver android:name="za.org.treehouse.hypoalarm.PreAlarmReceiver" />
|
<receiver android:name="za.org.treehouse.HypoAlarm.PreAlarmReceiver" />
|
||||||
<receiver android:name="za.org.treehouse.hypoalarm.CancelAlarmReceiver" />
|
<receiver android:name="za.org.treehouse.HypoAlarm.CancelAlarmReceiver" />
|
||||||
<receiver android:name="za.org.treehouse.hypoalarm.AlarmReceiver" />
|
<receiver android:name="za.org.treehouse.HypoAlarm.AlarmReceiver" />
|
||||||
<receiver android:name="za.org.treehouse.hypoalarm.GraceReceiver" />
|
<receiver android:name="za.org.treehouse.HypoAlarm.GraceReceiver" />
|
||||||
<receiver android:name="za.org.treehouse.hypoalarm.CancelGraceReceiver" />
|
<receiver android:name="za.org.treehouse.HypoAlarm.CancelGraceReceiver" />
|
||||||
<receiver
|
<receiver
|
||||||
android:name="za.org.treehouse.hypoalarm.AlarmChangeReceiver"
|
android:name="za.org.treehouse.HypoAlarm.AlarmChangeReceiver"
|
||||||
android:enabled="false" >
|
android:enabled="false" >
|
||||||
<intent-filter>
|
<intent-filter>
|
||||||
<action android:name="android.intent.action.BOOT_COMPLETED" />
|
<action android:name="android.intent.action.BOOT_COMPLETED" />
|
||||||
@ -56,12 +56,12 @@
|
|||||||
</receiver>
|
</receiver>
|
||||||
|
|
||||||
<service
|
<service
|
||||||
android:name="za.org.treehouse.hypoalarm.AlarmService" />
|
android:name="za.org.treehouse.HypoAlarm.AlarmService" />
|
||||||
<service
|
<service
|
||||||
android:name="za.org.treehouse.hypoalarm.AlarmNotify"
|
android:name="za.org.treehouse.HypoAlarm.AlarmNotify"
|
||||||
android:label="@string/alarm_notification" />
|
android:label="@string/alarm_notification" />
|
||||||
<service
|
<service
|
||||||
android:name="za.org.treehouse.hypoalarm.PreAlarmNotify"
|
android:name="za.org.treehouse.HypoAlarm.PreAlarmNotify"
|
||||||
android:label="@string/pre_alarm_notification" />
|
android:label="@string/pre_alarm_notification" />
|
||||||
|
|
||||||
<meta-data
|
<meta-data
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
package za.org.treehouse.hypoalarm;
|
package za.org.treehouse.HypoAlarm;
|
||||||
|
|
||||||
import android.app.Activity;
|
import android.app.Activity;
|
||||||
import android.content.Intent;
|
import android.content.Intent;
|
@ -1,4 +1,4 @@
|
|||||||
package za.org.treehouse.hypoalarm;
|
package za.org.treehouse.HypoAlarm;
|
||||||
|
|
||||||
import android.content.BroadcastReceiver;
|
import android.content.BroadcastReceiver;
|
||||||
import android.content.Context;
|
import android.content.Context;
|
@ -1,4 +1,4 @@
|
|||||||
package za.org.treehouse.hypoalarm;
|
package za.org.treehouse.HypoAlarm;
|
||||||
|
|
||||||
import android.content.Context;
|
import android.content.Context;
|
||||||
import android.content.SharedPreferences;
|
import android.content.SharedPreferences;
|
@ -1,4 +1,4 @@
|
|||||||
package za.org.treehouse.hypoalarm;
|
package za.org.treehouse.HypoAlarm;
|
||||||
|
|
||||||
import android.app.Notification;
|
import android.app.Notification;
|
||||||
import android.app.NotificationManager;
|
import android.app.NotificationManager;
|
@ -1,4 +1,4 @@
|
|||||||
package za.org.treehouse.hypoalarm;
|
package za.org.treehouse.HypoAlarm;
|
||||||
|
|
||||||
import android.content.BroadcastReceiver;
|
import android.content.BroadcastReceiver;
|
||||||
import android.content.Context;
|
import android.content.Context;
|
@ -1,4 +1,4 @@
|
|||||||
package za.org.treehouse.hypoalarm;
|
package za.org.treehouse.HypoAlarm;
|
||||||
|
|
||||||
import android.app.Service;
|
import android.app.Service;
|
||||||
import android.content.Context;
|
import android.content.Context;
|
@ -1,4 +1,4 @@
|
|||||||
package za.org.treehouse.hypoalarm;
|
package za.org.treehouse.HypoAlarm;
|
||||||
|
|
||||||
import android.content.BroadcastReceiver;
|
import android.content.BroadcastReceiver;
|
||||||
import android.content.Context;
|
import android.content.Context;
|
@ -1,4 +1,4 @@
|
|||||||
package za.org.treehouse.hypoalarm;
|
package za.org.treehouse.HypoAlarm;
|
||||||
|
|
||||||
import android.content.BroadcastReceiver;
|
import android.content.BroadcastReceiver;
|
||||||
import android.content.Context;
|
import android.content.Context;
|
@ -1,4 +1,4 @@
|
|||||||
package za.org.treehouse.hypoalarm;
|
package za.org.treehouse.HypoAlarm;
|
||||||
|
|
||||||
import android.content.BroadcastReceiver;
|
import android.content.BroadcastReceiver;
|
||||||
import android.content.Context;
|
import android.content.Context;
|
@ -1,4 +1,4 @@
|
|||||||
package za.org.treehouse.hypoalarm;
|
package za.org.treehouse.HypoAlarm;
|
||||||
|
|
||||||
import android.app.AlarmManager;
|
import android.app.AlarmManager;
|
||||||
import android.app.AlertDialog;
|
import android.app.AlertDialog;
|
@ -1,4 +1,4 @@
|
|||||||
package za.org.treehouse.hypoalarm;
|
package za.org.treehouse.HypoAlarm;
|
||||||
|
|
||||||
import android.app.Notification;
|
import android.app.Notification;
|
||||||
import android.app.NotificationManager;
|
import android.app.NotificationManager;
|
@ -1,4 +1,4 @@
|
|||||||
package za.org.treehouse.hypoalarm;
|
package za.org.treehouse.HypoAlarm;
|
||||||
|
|
||||||
import android.content.BroadcastReceiver;
|
import android.content.BroadcastReceiver;
|
||||||
import android.content.Context;
|
import android.content.Context;
|
@ -3,9 +3,10 @@
|
|||||||
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||||
xmlns:tools="http://schemas.android.com/tools"
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
|
tools:context=".AlarmNotificationActivity"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
tools:context=".AlarmNotificationActivity">
|
android:background="@android:color/black">
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
@ -13,7 +14,6 @@
|
|||||||
android:textAppearance="?android:attr/textAppearanceLarge"
|
android:textAppearance="?android:attr/textAppearanceLarge"
|
||||||
android:text="@string/app_name"
|
android:text="@string/app_name"
|
||||||
android:id="@+id/cancel_dialog_title"
|
android:id="@+id/cancel_dialog_title"
|
||||||
android:background="@android:color/black"
|
|
||||||
android:layout_alignParentTop="true"
|
android:layout_alignParentTop="true"
|
||||||
android:layout_centerHorizontal="true"
|
android:layout_centerHorizontal="true"
|
||||||
android:layout_marginTop="@dimen/alarm_widget_vertical_margin" />
|
android:layout_marginTop="@dimen/alarm_widget_vertical_margin" />
|
||||||
|
Loading…
Reference in New Issue
Block a user