Skip to content

Commit

Permalink
Fixed internet permission
Browse files Browse the repository at this point in the history
  • Loading branch information
guchito9 committed Dec 3, 2019
1 parent b65f546 commit 6033e9a
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## VERSION 1.0.3
_03_12_2019_
* Fixed internet permission.

## VERSION 1.0.2
_26_11_2019_
* Fixed header verification.
Expand Down
6 changes: 3 additions & 3 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.mercadolibre.android.picassodiskcache.example">
<uses-permission android:name="android.permission.INTERNET"/>


<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
android:theme="@style/AppTheme"
tools:ignore="GoogleAppIndexingWarning">
<activity android:name=".SampleActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/java/Versions.kt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
object Versions {

const val versionToDeploy = "1.0.2"
const val versionToDeploy = "1.0.3"

const val compileSdkVersion = 28
const val minSdkVersion = 19
Expand Down
6 changes: 5 additions & 1 deletion picasso-disk-cache/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.mercadolibre.android.picassodiskcache" />
package="com.mercadolibre.android.picassodiskcache">

<uses-permission android:name="android.permission.INTERNET"/>

</manifest>

0 comments on commit 6033e9a

Please sign in to comment.