mirror of
https://github.com/lubosz/overte.git
synced 2025-04-05 20:16:01 +02:00
clean up of debugging
This commit is contained in:
parent
29ec5486f6
commit
a425becc8a
4 changed files with 9 additions and 8 deletions
|
@ -28,7 +28,7 @@
|
|||
android:excludeFromRecents="true">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<category android:name="android.intent.category.LAUNCHER" />
|
||||
<category android:name="android.intent.category.INFO" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
<activity
|
||||
|
|
|
@ -23,13 +23,15 @@ public class PermissionsChecker extends Activity {
|
|||
private static final String EXTRA_ARGS = "args";
|
||||
private String mArgs;
|
||||
|
||||
|
||||
@Override
|
||||
protected void onCreate(Bundle savedInstanceState) {
|
||||
super.onCreate(savedInstanceState);
|
||||
mArgs =(getIntent().getStringExtra(EXTRA_ARGS));
|
||||
|
||||
System.out.println("QQQ_ launched args: "+mArgs);
|
||||
if(!TextUtils.isEmpty(mArgs)) {
|
||||
System.out.println("Application launched with following args: " + mArgs);
|
||||
}
|
||||
|
||||
requestAppPermissions(REQUIRED_PERMISSIONS,REQUEST_PERMISSIONS);
|
||||
}
|
||||
|
||||
|
|
|
@ -46,7 +46,6 @@ public class OculusMobileActivity extends QtActivity implements SurfaceHolder.Ca
|
|||
|
||||
super.onCreate(savedInstanceState);
|
||||
|
||||
|
||||
Log.w(TAG, "QQQ onCreate");
|
||||
// Create a native surface for VR rendering (Qt GL surfaces are not suitable
|
||||
// because of the lack of fine control over the surface callbacks)
|
||||
|
|
|
@ -2419,8 +2419,8 @@ Application::Application(int& argc, char** argv, QElapsedTimer& startupTimer, bo
|
|||
pauseUntilLoginDetermined();
|
||||
|
||||
#if defined(Q_OS_ANDROID)
|
||||
// / const QString QUEST_DEV = "hifi://quest-dev";
|
||||
// DependencyManager::get<AddressManager>()->handleLookupString(QUEST_DEV);
|
||||
const QString QUEST_DEV = "hifi://quest-dev";
|
||||
DependencyManager::get<AddressManager>()->handleLookupString(QUEST_DEV);
|
||||
#endif
|
||||
}
|
||||
|
||||
|
@ -3669,8 +3669,8 @@ void Application::handleSandboxStatus(QNetworkReply* reply) {
|
|||
// If this is a first run we short-circuit the address passed in
|
||||
if (_firstRun.get()) {
|
||||
#if !defined(Q_OS_ANDROID)
|
||||
// DependencyManager::get<AddressManager>()->goToEntry();
|
||||
// sentTo = SENT_TO_ENTRY;
|
||||
DependencyManager::get<AddressManager>()->goToEntry();
|
||||
sentTo = SENT_TO_ENTRY;
|
||||
#endif
|
||||
_firstRun.set(false);
|
||||
|
||||
|
|
Loading…
Reference in a new issue