Skip to content

Commit

Permalink
- update version
Browse files Browse the repository at this point in the history
-- adding code for camera facing
  • Loading branch information
ChochaNaresh committed May 2, 2024
1 parent 995048c commit 3fd5320
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 16 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ This library is designed to simplify the process of selecting and retrieving med
[![Build Workflow](https://github.com/ChochaNaresh/FilePicker/actions/workflows/android.yml/badge.svg)](https://github.com/ChochaNaresh/FilePicker/actions?query=workflow%3AAndroid)
[![API](https://img.shields.io/badge/API-21%2B-brightgreen.svg?style=flat)](https://android-arsenal.com/api?level=21)
![Language](https://img.shields.io/badge/language-Kotlin-orange.svg)
![Language](https://img.shields.io/badge/Kotlin-1.9.10-blue)
![Language](https://img.shields.io/badge/Kotlin-1.9.23-blue)

### How to use
**How to add dependencies**
Expand Down
8 changes: 4 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id("com.android.application").version("8.3.0").apply(false)
id("com.android.library").version("8.3.0").apply(false)
kotlin("android").version("1.9.10").apply(false)
id("com.android.application").version("8.4.0").apply(false)
id("com.android.library").version("8.4.0").apply(false)
kotlin("android").version("1.9.23").apply(false)
id("io.gitlab.arturbosch.detekt").version("1.23.1").apply(false)
id("com.vanniktech.maven.publish").version("0.25.3")
}

tasks.register("clean", Delete::class) {
delete(rootProject.buildDir)
delete(rootProject.layout.buildDirectory)
}
8 changes: 4 additions & 4 deletions filepickerlibrary/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -79,10 +79,10 @@ android {
dependencies {

// core
implementation("androidx.core:core-ktx:1.12.0")
implementation("androidx.core:core-ktx:1.13.1")
implementation("androidx.appcompat:appcompat:1.6.1")
implementation("com.google.android.material:material:1.10.0")
implementation("androidx.core:core-ktx:1.12.0")
implementation("com.google.android.material:material:1.11.0")
implementation("androidx.core:core-ktx:1.13.1")
implementation("androidx.constraintlayout:constraintlayout:2.1.4")

// timber
Expand All @@ -103,7 +103,7 @@ dependencies {

androidTestImplementation("com.google.truth:truth:1.1.5")
androidTestImplementation("androidx.test:rules:1.5.0")
androidTestImplementation("androidx.test.uiautomator:uiautomator:2.2.0")
androidTestImplementation("androidx.test.uiautomator:uiautomator:2.3.0")
androidTestImplementation("androidx.arch.core:core-testing:2.2.0")
}

Expand Down
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Mon May 01 11:06:20 IST 2023
#Thu May 02 11:41:33 IST 2024
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
9 changes: 4 additions & 5 deletions sample/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -85,15 +85,14 @@ android {

dependencies {
// core
implementation("androidx.core:core-ktx:1.12.0")
implementation("androidx.core:core-ktx:1.13.1")
implementation("androidx.appcompat:appcompat:1.6.1")
implementation("com.google.android.material:material:1.10.0")
implementation("com.google.android.material:material:1.11.0")
implementation("androidx.constraintlayout:constraintlayout:2.1.4")
implementation("androidx.core:core-ktx:1.12.0")
implementation("androidx.core:core-ktx:1.13.1")

// File Picker
implementation(project(":filepickerlibrary"))
//implementation("io.github.chochanaresh:filepicker:0.2.0")

// timber
implementation("com.jakewharton.timber:timber:5.0.1")
Expand All @@ -112,6 +111,6 @@ dependencies {

androidTestImplementation("com.google.truth:truth:1.1.5")
androidTestImplementation("androidx.test:rules:1.5.0")
androidTestImplementation("androidx.test.uiautomator:uiautomator:2.2.0")
androidTestImplementation("androidx.test.uiautomator:uiautomator:2.3.0")
androidTestImplementation("androidx.arch.core:core-testing:2.2.0")
}

0 comments on commit 3fd5320

Please sign in to comment.