Skip to content

Commit

Permalink
新增WCDB数据库工具
Browse files Browse the repository at this point in the history
  • Loading branch information
r17171709 committed Jun 16, 2017
1 parent bf4b3e2 commit 85e3e05
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 13 deletions.
12 changes: 6 additions & 6 deletions CommonLibrary/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ apply plugin: 'com.github.dcendents.android-maven'
group='com.github.renyu'

android {
compileSdkVersion 25
compileSdkVersion 26
buildToolsVersion "26.0.0"

defaultConfig {
Expand Down Expand Up @@ -39,11 +39,11 @@ dependencies {
exclude group: 'com.android.support', module: 'support-annotations'
})
testCompile 'junit:junit:4.12'
compile "com.android.support:appcompat-v7:25.3.1"
compile "com.android.support:support-v13:25.3.1"
compile "com.android.support:design:25.3.1"
compile "com.android.support:gridlayout-v7:25.3.1"
compile "com.android.support:recyclerview-v7:25.3.1"
compile 'com.android.support:appcompat-v7:26.0.0-alpha1'
compile "com.android.support:support-v13:26.0.0-alpha1"
compile "com.android.support:design:26.0.0-alpha1"
compile "com.android.support:gridlayout-v7:26.0.0-alpha1"
compile "com.android.support:recyclerview-v7:26.0.0-alpha1"
// 添加支持multidex的兼容包
compile 'com.android.support:multidex:1.0.1'
// 工具类
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,5 @@
* 集成流式布局控件
* 集成自带删除功能的输入框控件
* 支持网页浏览功能
* 集成viewpager切换动画
* 集成viewpager切换动画
* 集成微信WCDB数据库
8 changes: 2 additions & 6 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 25
compileSdkVersion 26
buildToolsVersion "26.0.0"
defaultConfig {
applicationId "com.renyu.androidcommonlibrary"
Expand All @@ -24,21 +24,17 @@ android {
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
lintOptions {
abortOnError false
}
}

dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:25.3.1'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
testCompile 'junit:junit:4.12'
// butterknife
annotationProcessor 'com.jakewharton:butterknife-compiler:8.6.0'
testCompile 'junit:junit:4.12'
compile project(':CommonLibrary')
// compile 'com.github.r17171709:AndroidCommonLibrary:v1.0.8'
}

0 comments on commit 85e3e05

Please sign in to comment.