i modified the manifest to relect the changes in the last commit
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:installLocation="auto" android:versionCode="5" android:versionName="0.0.5" package="com.TwentyCodes.android.SweetSoundsLite">
|
||||
android:installLocation="auto" android:versionCode="5" android:versionName="0.0.5" package="com.TwentyCodes.android.SweetDreamsLib">
|
||||
<application android:label="@string/app_name" android:icon="@drawable/playdisabled">
|
||||
|
||||
<activity android:name=".SweetSounds"
|
||||
<activity android:name="SweetDreamsFull"
|
||||
android:label="@string/app_name"
|
||||
android:screenOrientation="portrait">
|
||||
<intent-filter>
|
||||
|
||||
@@ -8,4 +8,5 @@
|
||||
# project structure.
|
||||
|
||||
# Project target.
|
||||
target=android-8
|
||||
target=android-9
|
||||
android.library=false
|
||||
|
||||
@@ -5,13 +5,11 @@
|
||||
package com.TwentyCodes.android.SweetDreamsLib;
|
||||
|
||||
|
||||
import com.TwentyCodes.android.SweetSoundsLite.R;
|
||||
|
||||
import android.content.SharedPreferences;
|
||||
import android.os.Bundle;
|
||||
import android.preference.Preference;
|
||||
import android.preference.PreferenceActivity;
|
||||
import android.preference.Preference.OnPreferenceChangeListener;
|
||||
import android.preference.PreferenceActivity;
|
||||
|
||||
/**
|
||||
* this is a settings activity for WhiteNoise. it handles user changeable settings and saves them
|
||||
|
||||
@@ -4,8 +4,6 @@
|
||||
*/
|
||||
package com.TwentyCodes.android.SweetDreamsLib;
|
||||
|
||||
import com.TwentyCodes.android.SweetSoundsLite.R;
|
||||
|
||||
import android.app.Activity;
|
||||
import android.content.Context;
|
||||
import android.content.Intent;
|
||||
@@ -22,14 +20,14 @@ import android.view.View;
|
||||
import android.view.View.OnClickListener;
|
||||
import android.widget.ImageButton;
|
||||
import android.widget.SeekBar;
|
||||
import android.widget.TextView;
|
||||
import android.widget.SeekBar.OnSeekBarChangeListener;
|
||||
import android.widget.TextView;
|
||||
|
||||
/**
|
||||
* this class is responsible for setting up the ui and handling ui events
|
||||
* @author ricky
|
||||
*/
|
||||
public class SweetSounds extends Activity implements OnClickListener, OnSeekBarChangeListener{
|
||||
public class SweetDreamsFull extends Activity implements OnClickListener, OnSeekBarChangeListener{
|
||||
|
||||
private boolean isPlaying;
|
||||
private ImageButton play_pause;
|
||||
Reference in New Issue
Block a user