android源码有很多包找不到,android – 在主模块中找不到库模块的包

在将Eclipse项目迁移到Android Studio时遇到问题,主模块无法识别库模块中的包。已手动创建库模块并复制源代码,但编译时仍报“包不存在”的错误。检查了gradle.build文件配置,库模块结构正确,但问题依然存在。
摘要由CSDN通过智能技术生成

我有一个项目,我从

Eclipse导入到

Android Studio.在Eclipse中一切都运行良好.

它包含一个主模块(Eclipse中的一个项目),它使用来自库模块的包(Eclipse中的库项目).由于迁移不顺利,我手动创建了一个库模块,只是将所有源代码复制到新创建的模块中.

问题是主模块似乎没有从库模块中找到包,当我重建项目时,我得到的错误就像“包bla bla不存在”.

这是gradle.build的主要模块:

apply plugin: 'com.android.application'

android {

compileSdkVersion 25

buildToolsVersion "25.0.0"

defaultConfig {

applicationId "com.pointer.mamagoose"

minSdkVersion 9

targetSdkVersion 21

}

buildTypes {

release {

minifyEnabled false

proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'

}

}

}

dependencies {

compile project(':linphoneclean')

compile 'com.android.support:support-v4:25.0.0'

compile 'com.android.support:appcompat-v7:25.0.0'

compile 'com.google.android.gms:play-services:9.4.0'

compile files('libs/firebase-client-android-2.5.0.jar')

compile files('libs/apache-httpcomponents-httpclient.jar')

compile files('libs/apache-httpcomponents-httpcore.jar')

compile files('libs/android-support-v7-recyclerview.jar')

}

linphoneclean是库模块.

整个项目的settings.gradle:

include ':linphoneclean'

include ':tigris'

这是库模块的build.gradle:

apply plugin: 'com.android.library'

android {

compileSdkVersion 25

buildToolsVersion "25.0.0"

defaultConfig {

minSdkVersion 9

targetSdkVersion 25

versionCode 1

versionName "1.0"

testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"

}

buildTypes {

release {

minifyEnabled false

proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'

}

}

}

dependencies {

compile fileTree(dir: 'libs', include: ['*.jar'])

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.0.0'

testCompile 'junit:junit:4.12'

compile 'com.google.code.gson:gson:2.6.2'

compile files('libs/commons-lang3-3.4.jar')

compile files('libs/linphone.jar')

compile files('libs/firebase-client-android-2.5.0.jar')

}

库模块的结构包括例如文件夹:

src / main / com / pointer / linphone(里面有所有带有com.pointer.linphone包减速的java文件,但我仍然收到错误说>“包com.pointer.linphone不存在).

我究竟做错了什么?

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值