Skip to content
Snippets Groups Projects
Commit eb123f6b authored by Augusto Bott's avatar Augusto Bott
Browse files

preliminary /res clean-up, minor adjustments related to naming convention

parent 2b816200
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -15,7 +15,7 @@
<!-- <uses-permission android:name="android.permission.READ_PHONE_STATE" />-->
 
 
<application android:icon="@drawable/ssh_icon"
<application android:icon="@drawable/droidsshd_icon"
android:label="@string/app_label"
android:persistent="true" android:debuggable="true">
<service
Loading
Loading
Loading
Loading
@@ -46,7 +46,7 @@ public class InitialSetup extends Activity {
Base.refresh();
}
// requestWindowFeature(Window.FEATURE_NO_TITLE);
setContentView(R.layout.setup);
setContentView(R.layout.act_setup);
if (Base.debug) {
Log.d(TAG, "onCreate() called...");
}
Loading
Loading
Loading
Loading
@@ -245,7 +245,7 @@ public class DroidSSHdService extends Service{
 
protected void showNotification() {
if (Base.isDropbearDaemonNotificationEnabled()) {
Notification notifyDetails = new Notification(R.drawable.ssh_icon, getString(R.string.app_label), System.currentTimeMillis());
Notification notifyDetails = new Notification(R.drawable.droidsshd_icon, getString(R.string.app_label), System.currentTimeMillis());
Intent intent = new Intent();
intent.setClass(Base.getContext(), br.com.bott.droidsshd.DroidSSHd.class);
intent.setAction(Intent.ACTION_DEFAULT);
Loading
Loading
Loading
Loading
@@ -26,7 +26,7 @@ public class NumberPickerPreference extends DialogPreference {
public NumberPickerPreference(Context context, AttributeSet attrs,
int defStyle) {
super(context, attrs, defStyle);
setDialogLayoutResource(R.layout.number_picker_pref);
setDialogLayoutResource(R.layout.pref_number_picker);
}
 
@Override
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment