diff --git a/README.md b/README.md index b2765430..0c1e738a 100644 --- a/README.md +++ b/README.md @@ -32,6 +32,19 @@ nsfwBean?.sfw ... nsfwBean?.nsfw ... ``` -### Demo运行结果: + +- 项目打包时请使用如下代码确定你使用的ndk,否则会打包全部类型的库文件,导致项目异常庞大 +``` + ndk { + abiFilters 'armeabi-v7a' + } +``` +### [点我下载apk(arm+x86)](https://fir.im/nsfw) + +### 扫码下载 + +![图片](https://github.com/devzwy/open_nsfw_android/blob/master/img/2.png) + +### Demo运行结果(后期手动打码防止屏蔽): ![图片](https://github.com/devzwy/open_nsfw_android/blob/master/img/1.png) \ No newline at end of file diff --git a/app/build.gradle b/app/build.gradle index b47825d8..a737dec0 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -14,7 +14,7 @@ android { versionName "1.0" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" ndk { - abiFilters 'armeabi-v7a' + abiFilters 'armeabi-v7a','x86_64' } } buildTypes { @@ -45,6 +45,6 @@ dependencies { androidTestImplementation 'com.android.support.test:runner:1.0.2' androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2' implementation 'com.github.CymChad:BaseRecyclerViewAdapterHelper:2.9.30' - implementation project(path: ':nsfw') -// implementation 'com.github.devzwy:open_nsfw_android:1.2.3' +// implementation project(path: ':nsfw') + implementation 'com.github.devzwy:open_nsfw_android:1.2.4' }