Questions tagged as 'android'

2
answers

Solve the Multidex error in Eclipse without the build.gradle file

I get the error of "Unable to execute dex: method ID not in [0, 0xffff]: 65536". The point is that I do not have a buid.gradle file in my application. My project is done with Eclipse. Is there a solution? Or put code in another ec...
asked by 31.03.2017 / 02:12
2
answers

Change key value from the console in FireBase

I have made my first database in FireBase , but I have committed a misspelling in one of the keys. The problem is that I can not modify the field from the console. Does anyone know how to do it? My tree is something like this: metro...
asked by 06.12.2016 / 14:21
4
answers

When installing my android application I see permissions that are not in the manifest

I have already checked every line of the manifest well: <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> <uses-permission android:n...
asked by 06.12.2016 / 17:35
3
answers

android.permission.GET_ACCOUNTS and privacy policy

I have updated the apk of one of my app and I got the message from    Your APK requests the following permissions: android.permission.GET_ACCOUNTS . Applications that use these permissions in an APK must have a privacy policy set. But I...
asked by 07.12.2016 / 17:51
2
answers

Android DrawerLayout - No drawer view found with gravity left

When you click on the button to display the DrawerLayout, you get this error: E/AndroidRuntime: FATAL EXCEPTION: main java.lang.IllegalArgumentException: No drawer view found with gravity LEFT...
asked by 23.09.2016 / 21:57
1
answer

problem with onBackPressed fragment android

I have a Navigation Drawer which instantiates fragments, the problem I have, is that by pressing the back button, the onBackPressed method shows an alertDialog, but when entering one of these fragments, pressing the back button shows me the aler...
asked by 05.10.2016 / 02:44
2
answers

download Build Tools 26.0.2 for Android studio 3.0.1

I want to download Build Tools version 26.0.2 but it will not let me download it because of my geographical position (I'm in Cuba) in the SDK Manager.     
asked by 26.02.2018 / 16:22
2
answers

Error in sqlite

I am working on android studio with database sqlite and it generates the following error when deleting all the data in a table: When using this code: db.delete("tabla",null,null); I get the following error:    android.database....
asked by 14.09.2016 / 22:48
1
answer

Error Could Not Find Method (View), Place Picker Google Api

@Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_user); Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar); setSupportActionBar(toolbar); get_place = (Button)...
asked by 04.08.2016 / 21:06
1
answer

How to send HashMapString, Integer with another Activity

How can I send a Map<String,Integer>= new HashMap<>(); from one activity to another, using Intent ?     
asked by 10.08.2016 / 23:26