Skip to content

Commit d5452b2

Browse files
committed
Gradle changes
1 parent 12aa067 commit d5452b2

File tree

8 files changed

+293
-282
lines changed

8 files changed

+293
-282
lines changed
0 Bytes
Binary file not shown.

.idea/modules/app/NewPhotoPickerAndroid13.app.iml

Lines changed: 0 additions & 31 deletions
This file was deleted.

.idea/modules/app/NewPhotoPickerAndroid13.app.main.iml

Lines changed: 244 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules/app/NewPhotoPickerAndroid13.app.androidTest.iml renamed to .idea/modules/app/NewPhotoPickerAndroid13.app.unitTest.iml

Lines changed: 39 additions & 80 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules/photoPicker/NewPhotoPickerAndroid13.photoPicker.unitTest.iml

Lines changed: 0 additions & 169 deletions
This file was deleted.

app/build.gradle

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,14 @@ android {
4949

5050
dependencies {
5151

52-
implementation project(":photoPicker")
52+
implementation (project(":photoPicker")){
53+
transitive = true
54+
// Use the consuming application's FireBase module, so exclude it
55+
// from the dependency. (not totally necessary if you use compileOnly
56+
// when declaring the dependency in the library project).
57+
// Exclude the "plain java" json module to fix build warnings.
58+
exclude group: 'org.json', module: 'json'
59+
}
5360
implementation 'androidx.core:core-ktx:1.12.0'
5461
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.7.0'
5562
implementation 'androidx.activity:activity-compose:1.8.2'

jitpack.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
jdk:
2+
- openjdk11

settings.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,4 @@ dependencyResolutionManagement {
1616
}
1717
rootProject.name = "NewPhotoPickerAndroid13"
1818
include ':app'
19-
2019
include ':photoPicker'

0 commit comments

Comments
 (0)