36 lines
942 B
Java
36 lines
942 B
Java
|
|
package org.sufficientlysecure.keychain.remote_api;
|
||
|
|
|
||
|
|
import org.sufficientlysecure.keychain.Constants;
|
||
|
|
import org.sufficientlysecure.keychain.R;
|
||
|
|
import org.sufficientlysecure.keychain.util.Log;
|
||
|
|
|
||
|
|
import android.content.Intent;
|
||
|
|
import android.net.Uri;
|
||
|
|
import android.os.Bundle;
|
||
|
|
|
||
|
|
import com.actionbarsherlock.app.SherlockFragmentActivity;
|
||
|
|
|
||
|
|
public class AppSettingsActivity extends SherlockFragmentActivity {
|
||
|
|
|
||
|
|
@Override
|
||
|
|
protected void onCreate(Bundle savedInstanceState) {
|
||
|
|
super.onCreate(savedInstanceState);
|
||
|
|
|
||
|
|
setContentView(R.layout.api_app_settings_activity);
|
||
|
|
|
||
|
|
// check if add new or edit existing
|
||
|
|
Intent intent = getIntent();
|
||
|
|
Uri appUri = intent.getData();
|
||
|
|
if (appUri == null) {
|
||
|
|
Log.e(Constants.TAG, "Intent data missing. Should be Uri of app!");
|
||
|
|
finish();
|
||
|
|
return;
|
||
|
|
}
|
||
|
|
|
||
|
|
Log.d(Constants.TAG, "uri: " + appUri);
|
||
|
|
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|