WindSekirun / NaraeImagePicker

MultiImagePicker for Android Application, written in Kotlin
Apache License 2.0
40 stars 14 forks source link

NaraeImagePicker Build Status

Kotlin GitHub license Android Arsenal

MultiImagePicker for Android Application, written in Kotlin

It provides...

Usages

Import

rootProject/build.gradle

allprojects {
    repositories {
        maven { url 'https://jitpack.io' }
    }
}

app/build.gradle

dependencies {
     implementation 'com.github.WindSekirun:NaraeImagePicker:2.0.6'
}

Warning, I changed package name starting from 2.0.0.

Activity

val settingItem = PickerSettingItem().apply {
    pickLimit = Constants.LIMIT_UNLIMITED
    viewMode = ViewMode.FolderView
    enableDetailMode = true
    uiSetting.enableUpInParentView = true
    uiSetting.themeResId = R.style.AppTheme
    uiSetting.pickerTitle = "Custom Picker Title"
    uiSetting.fileSpanCount = 3
    uiSetting.folderSpanCount = 2
}

NaraeImagePicker.instance.start(this, settingItem, object : OnPickResultListener {
    override fun onSelect(resultCode: Int, imageList: ArrayList<String>) {
        if (resultCode != NaraeImagePicker.PICK_SUCCESS) {
            toast("Failed to pick image")
            return
        }

    }
})

resolve DuplicateRelativeFileException: More than one file...

You should insert this statement in android block in app/build.gradle

packagingOptions {
    exclude 'META-INF/library_release.kotlin_module'
}

Revision History

For older history, refer to RELEASE.md

License

Copyright 2017 WindSekirun (DongGil, Seo)

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.