我正在为 Android 应用程序开发一个库,我编写了一些包含不同功能的类。
我在从 Java 导出到 Jar 的过程中遇到问题。我做了以下事情:
1) 从现有源代码中,文件 -> 新模块 -> Java 库
2) Android Studio 此时创建一个“子项目”,并带有默认类
3) 将我的 java 代码剪切并粘贴到第 2 点创建的库中
此时我有一些问题/疑问:
编辑 1
应用程序分级
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.3"
defaultConfig {
applicationId "MY ID"
minSdkVersion 16
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.3.0'
compile files('libs/httpcore-4.4.4.jar')
}
梯度下降
apply plugin: 'java'
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
}
项目等级
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.1.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
问题在于您正在将代码移动到另一个子项目中,然后以不同的方式构建它。要解决此问题,假设您使用的是 Android Studio,请将新模块中所需的所有库移至模块 Gradle.build 文件中。
我是一名优秀的程序员,十分优秀!