Posts by Victor Gomes • 156 points
3 posts
-
1
votes1
answer160
viewsA: How do I set up permission for testing on Androidmanifest?
@Daniel theoretically just add these dependencies to your Gradle file. androidTestCompile('com.android.support.test:runner:0.3') { exclude group: 'com.android.support', module: 'support-annotations'…
-
0
votes1
answer2062
viewsA: Error in Android Studio what to do?
@Rodolfo I had an error very similar to yours. My problem was that in the file build.gradle, the one you set up the SDK for which version to compile these things, the compilation properties were at…
-
3
votes3
answers694
viewsA: What best practices when implementing requests?
Currently Android has adopted the library for HTTP requests from java.net. The recommended libraries before this were in the apache package. Google, along with AOSP, are developing a library called…