mirror of
https://github.com/nextcloud/android.git
synced 2024-11-27 09:39:25 +03:00
Minimized imports
This commit is contained in:
parent
e2f0af1c26
commit
e7a6a68531
1 changed files with 3 additions and 3 deletions
|
@ -32,18 +32,18 @@ import android.accounts.Account;
|
|||
import android.content.BroadcastReceiver;
|
||||
import android.content.Context;
|
||||
import android.content.Intent;
|
||||
//import android.content.IntentFilter;
|
||||
import android.database.Cursor;
|
||||
import android.net.ConnectivityManager;
|
||||
import android.net.NetworkInfo.State;
|
||||
import android.preference.PreferenceManager;
|
||||
import android.provider.MediaStore.*;
|
||||
import android.provider.MediaStore.Images;
|
||||
import android.provider.MediaStore.Video;
|
||||
import android.webkit.MimeTypeMap;
|
||||
|
||||
|
||||
public class InstantUploadBroadcastReceiver extends BroadcastReceiver {
|
||||
|
||||
private static String TAG = "InstantUploadBroadcastReceiver";
|
||||
private static String TAG = InstantUploadBroadcastReceiver.class.getName();
|
||||
// Image action
|
||||
// Unofficial action, works for most devices but not HTC. See: https://github.com/owncloud/android/issues/6
|
||||
private static String NEW_PHOTO_ACTION_UNOFFICIAL = "com.android.camera.NEW_PICTURE";
|
||||
|
|
Loading…
Reference in a new issue