Advertisement
Guest User

Untitled

a guest
Jun 25th, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.72 KB | None | 0 0
  1. dependencies {
  2. compile fileTree(dir: 'libs', include: ['*.jar'])
  3. testCompile 'junit:junit:4.12'
  4. compile 'com.android.support:appcompat-v7:23.4.0'
  5. compile 'com.android.support:design:23.3.0'
  6. compile 'com.amazonaws:aws-android-sdk-core:2.2.+'
  7. compile 'com.amazonaws:aws-android-sdk-s3:2.2.+'
  8. compile 'com.amazonaws:aws-android-sdk-ddb:2.2.+'
  9. }
  10.  
  11. <?xml version="1.0" encoding="utf-8"?>
  12. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  13. package="projeto.projeto_desafio">
  14.  
  15. <uses-permission android:name="android.permission.INTERNET" />
  16. <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
  17. <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
  18. <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
  19. <!-- Allows the API to use the Global Positioning System (GPS) to determine the device's location to within a very small area. -->
  20. <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
  21. <!-- Allows the API to use WiFi or mobile cell data (or both) to determine the device's location. -->
  22. <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
  23.  
  24. <application
  25. android:allowBackup="true"
  26. android:icon="@mipmap/ic_launcher"
  27. android:label="@string/app_name"
  28. android:supportsRtl="true"
  29. android:theme="@style/AppTheme">
  30. <activity android:name=".activity.MainActivity">
  31. <intent-filter>
  32. <action android:name="android.intent.action.MAIN" />
  33.  
  34. <category android:name="android.intent.category.LAUNCHER" />
  35. </intent-filter>
  36. </activity>
  37.  
  38. </application>
  39.  
  40. </manifest>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement