Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
e
os
android_packages_apps_SetupWizard
Commits
42b1a100
Commit
42b1a100
authored
Aug 21, 2018
by
Unknown
Browse files
Remove drive launcher
parent
4da98b21
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/com/cyanogenmod/setupwizard/FinishActivity.java
View file @
42b1a100
...
...
@@ -64,29 +64,11 @@ public class FinishActivity extends BaseSetupWizardActivity {
private
final
Handler
mHandler
=
new
Handler
();
private
volatile
boolean
mIsFinishing
=
false
;
private
final
static
int
EELO_SYNCHRONIZER_REQUEST_CODE
=
0x01
;
private
boolean
hasError
=
false
;
@Override
protected
void
onCreate
(
Bundle
savedInstanceState
)
{
super
.
onCreate
(
savedInstanceState
);
hasError
=
false
;
try
{
Intent
intent
=
new
Intent
(
"xxx.io.eelo.drive.LAUNCHER"
);
// TODO static
intent
.
putExtra
(
"EELO_SETTINGS_LAUNCHER"
,
"SETUP_WIZARD"
);
startActivityForResult
(
intent
,
EELO_SYNCHRONIZER_REQUEST_CODE
);
}
catch
(
android
.
content
.
ActivityNotFoundException
err
)
{
hasError
=
true
;
}
mSetupWizardApp
=
(
SetupWizardApp
)
getApplication
();
//mSetupWizardApp.getSettingsBundle().putBoolean(KEY_SEND_METRICS, false); // /e/ do *not* send metrics by default.
...
...
@@ -96,31 +78,6 @@ public class FinishActivity extends BaseSetupWizardActivity {
EnableAccessibilityController
.
getInstance
(
getApplicationContext
());
setNextText
(
R
.
string
.
start
);
}
@Override
protected
void
onActivityResult
(
int
requestCode
,
int
resultCode
,
Intent
data
)
{
//super must be called
//super.onActivityResult(requestCode, resultCode, data);
if
(
requestCode
==
EELO_SYNCHRONIZER_REQUEST_CODE
)
{
//String message=data.getStringExtra("MESSAGE");
//alert(message);
if
(
resultCode
==
RESULT_CANCELED
)
{
//This is a BACK, or the Activity has not been found.
if
(!
hasError
)
{
// If the activity has not been found do *NOT* return back! (we will be in a (custom) loop)
onBackPressed
();
}
}
}
}
@Override
protected
int
getTransition
()
{
...
...
src/com/cyanogenmod/setupwizard/SetupWizardExitActivity.java
View file @
42b1a100
...
...
@@ -51,7 +51,6 @@ public class SetupWizardExitActivity extends BaseSetupWizardActivity {
SetupWizardUtils
.
enableCaptivePortalDetection
(
this
);
PhoneMonitor
.
onSetupFinished
();
launchHome
();
launchEeloSynchronizer
();
finish
();
applyForwardTransition
(
TRANSITION_ID_FADE
);
Intent
i
=
new
Intent
();
...
...
@@ -64,23 +63,5 @@ public class SetupWizardExitActivity extends BaseSetupWizardActivity {
.
addCategory
(
"android.intent.category.HOME"
)
.
addFlags
(
FLAG_ACTIVITY_NEW_TASK
|
FLAG_ACTIVITY_CLEAR_TASK
));
}
/*
* Launch eelo synchronizer service
*/
private
final
void
launchEeloSynchronizer
()
{
try
{
IntentFilter
filter
=
new
IntentFilter
();
filter
.
addAction
(
Intent
.
ACTION_BOOT_COMPLETED
);
ComponentName
receiver
=
new
ComponentName
(
"io.eelo.synchronizer"
,
"io.eelo.synchronizer.triggers.BootCompleteReceiver"
);
PackageManager
pm
=
getPackageManager
();
pm
.
setComponentEnabledSetting
(
receiver
,
PackageManager
.
COMPONENT_ENABLED_STATE_DEFAULT
,
PackageManager
.
DONT_KILL_APP
);
}
catch
(
java
.
lang
.
Throwable
t
)
{
//Toast.makeText(getApplicationContext(), getString(R.string.eelo_start_synchronizer_err), Toast.LENGTH_LONG).show();
}
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment