我将在我的应用程序中使用cognalys(第三方库)进行移动验证。我从git hub克隆了它,我在我的应用程序中将该认知导入为模块。如何在我的项目中将该模块用作库(如何将其转换为库)..我不知道如何使用它。通过使用,我只能创建一个类用于移动验证用户...
请帮我找出解决方案
这是我的cognalys项目的build.gradle
apply plugin: 'com.android.library'
android {
compileSdkVersion 10
buildToolsVersion "21.1.2"
defaultConfig {
minSdkVersion 9
targetSdkVersion 19
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
}
dependencies {
compile 'com.android.support:support-v4:19.0.0'
}
答案 0 :(得分:1)
首先将库项目添加为模块。
文件 - >新建>导入模块
然后将此行添加到gradle中的依赖项
compile project(':yourmodule')