Skip to content

Commit

Permalink
Separated GalleryImageSelector library and changed project name
Browse files Browse the repository at this point in the history
  • Loading branch information
LucaMartino97 committed Oct 25, 2020
1 parent 520d173 commit 9235752
Show file tree
Hide file tree
Showing 15 changed files with 30 additions and 339 deletions.
6 changes: 6 additions & 0 deletions .idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions .idea/jarRepositories.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added app-release/app-release.aar
Binary file not shown.
2 changes: 2 additions & 0 deletions app-release/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
configurations.maybeCreate("default")
artifacts.add("default", file('app-release.aar'))
1 change: 1 addition & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ dependencies {
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.constraintlayout:constraintlayout:2.0.1'
implementation 'androidx.exifinterface:exifinterface:1.1.0'
implementation 'com.github.niedev:GalleryImageSelector:1.0.6'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.example.myapplication;
package com.gallery.imageselectorexample;

import android.content.Context;

Expand Down
9 changes: 3 additions & 6 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.myapplication">

<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
package="com.gallery.imageselectorexample">

<application
android:allowBackup="true"
Expand All @@ -11,17 +9,16 @@
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<activity android:name="com.gallery.imageselectorexample.MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>

<provider
android:name="androidx.core.content.FileProvider"
android:authorities="nie.translator.userimage.fileprovider"
android:authorities="com.gallery.imageselector.provider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
Expand Down
Loading

0 comments on commit 9235752

Please sign in to comment.