项目作者: snpmyn

项目描述 :
widget
高级语言: Java
项目地址: git://github.com/snpmyn/Widget.git
创建时间: 2019-06-05T02:39:36Z
项目社区:https://github.com/snpmyn/Widget

开源协议:Apache License 2.0

下载


Build Status
codecov.io
SNAPSHOT
Codacy Badge
GitHub license
API

GitHub stars
GitHub forks
GitHub watchers

介绍

部件。

架构

模块 说明 补充
示例app 用法举例
一方库Library 纯本地实现
一方库Matisse 据三方库Matisse实现
一方库Ucrop 据三方库uCrop实现
一方库BgaQrCodeAndroid 据三方库BGAQRCode-Android实现 含一方库Ucrop(限一方库BgaQrCodeAndroid用)
一方库Banner 据三方库banner实现
一方库AutoSize 据三方库AndroidAutoSize实现

依赖、权限

模块 依赖
示例app implementation ‘org.jetbrains.kotlin:kotlin-stdlib:1.4.21@jar
示例app implementation ‘io.reactivex.rxjava2:rxandroid:2.1.1’
示例app implementation ‘io.reactivex.rxjava2:rxandroid:2.2.14’
示例app implementation project(path: ‘:library’)
示例app implementation project(path: ‘:matisse’)
示例app implementation project(path: ‘:ucrop’)
示例app implementation project(path: ‘:BgaQrCodeAndroid’)
示例app implementation project(path: ‘:banner’)
示例app implementation project(path: ‘:smartrefreshlayout’)
示例app implementation project(path: ‘:autosize’)
一方库Library implementation ‘androidx.core:core-ktx:1.5.0-alpha05’
一方库Library implementation “org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version”
一方库Library implementation ‘androidx.palette:palette-ktx:1.0.0’
一方库Library api ‘com.github.snpmyn.Util:utilone:v0.0.1.3X’(避重)
一方库Library api ‘com.github.snpmyn.Util:utiltwo:v0.0.1.3X’(避重)
一方库Library api ‘com.willowtreeapps.spruce:spruce-android:1.0.1’(避重)
一方库Matisse implementation ‘com.github.snpmyn.Util:utilone:v0.0.1.3X’
一方库Matisse api ‘com.zhihu.android:matisse:0.5.3-beta3’(避重)
一方库Ucrop api ‘com.github.yalantis:ucrop:2.2.6-native’(避重)
一方库BgaQrCodeAndroid implementation project(path: ‘:matisse’)
一方库BgaQrCodeAndroid implementation ‘com.github.snpmyn.Util:utilone:v0.0.1.3X’
一方库Banner implementation ‘com.github.snpmyn.Util:utilone:v0.0.1.3X’
一方库Banner api ‘com.youth.banner:banner:1.4.10’(避重)
一方库AutoSize implementation ‘me.jessyan:autosize:1.1.2’
二方库Util-示例app implementation project(path: ‘:utilone’)
二方库Util-示例app implementation project(path: ‘:utiltwo’)
二方库Util-UtilOne api ‘com.google.android.material:material:1.3.0-beta01’(避重)
二方库Util-UtilOne api ‘com.github.bumptech.glide:glide:4.11.0’(避重)
二方库Util-UtilOne api ‘io.reactivex:rxandroid:1.2.1’(避重)
二方库Util-UtilOne api ‘io.reactivex:rxjava:1.3.8’(避重)
二方库Util-UtilOne api ‘com.jakewharton.timber:timber:4.7.1’(避重)
二方库Util-UtilOne api ‘com.tencent:mmkv-static:1.0.23’(避重)
二方库Util-UtilOne implementation ‘com.getkeepsafe.relinker:relinker:1.3.1’
二方库Util-UtilOne implementation ‘com.qw:soulpermission:1.2.2_x’
二方库Util-UtilOne implementation ‘org.apache.commons:commons-lang3:3.11’
二方库Util-UtilTwo implementation ‘androidx.core:core-ktx:1.5.0-alpha05’
二方库Util-UtilTwo implementation “org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version”
模块 权限
示例app android:name=”android.permission.INTERNET”(避重)
示例app android:name=”android.permission.RECORD_AUDIO”(避重)
示例app android:name=”android.permission.READ_CONTACTS”(避重)
示例app android:name=”android.permission.SEND_SMS”(避重)
示例app android:name=”android.permission.ACCESS_NETWORK_STATE”(避重)
示例app android:name=”android.permission.ACCESS_COARSE_LOCATION”(避重)
示例app android:name=”android.permission.ACCESS_FINE_LOCATION”(避重)
示例app android:name=”android.permission.CAMERA”(避重)
示例app android:name=”android.permission.VIBRATE”(避重)
一方库Library
一方库Matisse
一方库Ucrop
一方库BgaQrCodeAndroid
一方库Banner
一方库AutoSize
二方库Util-app android:name=”android.permission.READ_EXTERNAL_STORAGE”(避重)
二方库Util-app android:name=”android.permission.WRITE_EXTERNAL_STORAGE”(避重)
二方库Util-UtilOne
二方库Util-UtilTwo

问题

autosize

AutoSizeInitConfigure 用 Log.d(xxx, xxx),须替换为公共方法。
用 AndroidAutoSize 致 MaterialDesignAlertDialogBuilder 创建对话框向右偏移。

使用

SECURITY

版本快速迭代中,拉取失败暂时查看源码。

build.gradle(module)

  1. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  2. buildscript {
  3. repositories {
  4. google()
  5. jcenter()
  6. }
  7. dependencies {
  8. classpath 'com.android.tools.build:gradle:4.1.2'
  9. // NOTE: Do not place your application dependencies here; they belong
  10. // in the individual module build.gradle files
  11. }
  12. }
  13. allprojects {
  14. repositories {
  15. google()
  16. jcenter()
  17. maven { url 'https://jitpack.io' }
  18. }
  19. }
  20. task clean(type: Delete) {
  21. delete rootProject.buildDir
  22. }

build.gradle(app)

  1. apply plugin: 'com.android.application'
  2. android {
  3. ...
  4. defaultConfig {
  5. ...
  6. }
  7. compileOptions {
  8. sourceCompatibility JavaVersion.VERSION_1_8
  9. targetCompatibility JavaVersion.VERSION_1_8
  10. }
  11. configurations.all {
  12. resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
  13. }
  14. }
  15. dependencies {
  16. implementation 'com.github.snpmyn.Widget:library:v0.0.1.4X'
  17. implementation 'com.github.snpmyn.Widget:matisse:v0.0.1.4X'
  18. implementation 'com.github.snpmyn.Widget:ucrop:v0.0.1.4X'
  19. implementation 'com.github.snpmyn.Widget:BgaQrCodeAndroid:v0.0.1.4X'
  20. implementation 'com.github.snpmyn.Widget:banner:v0.0.1.4X'
  21. implementation 'com.github.snpmyn.Widget:autosize:v0.0.1.4X'
  22. }

License

  1. Copyright 2019 snpmyn
  2. Licensed under the Apache License, Version 2.0 (the "License");
  3. you may not use this file except in compliance with the License.
  4. You may obtain a copy of the License at
  5. http://www.apache.org/licenses/LICENSE-2.0
  6. Unless required by applicable law or agreed to in writing, software
  7. distributed under the License is distributed on an "AS IS" BASIS,
  8. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  9. See the License for the specific language governing permissions and
  10. limitations under the License.