- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我在组装一个库项目时遇到了一个问题。我构建了一个应用程序项目&后来将其转换为库。我无法生成.aar包。我在这里找到了几个告诉我要更改apt neenbedankt插件、附加databinding:compiler的答案,但这对我来说根本不起作用。有人可能会说匕首是问题所在,但我不确定。请帮忙。
这是我组装生成时的错误日志
Information:Gradle tasks [assemble]
/home/***/***/**/**/productlisting/viewmodel/ProductListFragmentViewModel.java
Error:(9, 52) error: cannot find symbol class BR
/home/***/***/**/**/home/viewmodel/NavSubItemViewModel.java
Error:(3, 52) error: cannot find symbol class BR
/home/***/***/**/**/productlisting/viewmodel/NavSubItemViewModel.java
Error:(3, 52) error: cannot find symbol class BR
/home/***/***/**/**/home/topbrands/BrandActivityViewModel.java
Error:(3, 52) error: cannot find symbol class BR
/home/***/***/**/**/productlisting/viewmodel/ProductListActivityViewModel.java
Error:(3, 52) error: cannot find symbol class BR
/home/***/***/**/**/home/viewmodel/NewArrivalViewModel.java
Error:(3, 52) error: cannot find symbol class BR
/home/***/***/**/**/home/viewmodel/NavParentItemViewModel.java
Error:(3, 52) error: cannot find symbol class BR
/home/***/***/**/**/productlisting/viewmodel/NavParentItemViewModel.java
Error:(3, 52) error: cannot find symbol class BR
Error:Execution failed for task :app:compileLiveDebugJavaWithJavac.
Compilation failed; see the compiler error output for details.
Information:BUILD FAILED
Information:Total time: 6.519 secs
Information:9 errors
Information:0 warnings
Information:See complete output in console
build.gradle
apply plugin: 'com.android.library'
apply plugin: 'io.fabric' def gitSha = 'git rev-parse --short HEAD'.execute([], project.rootDir).text.trim()
android {
compileSdkVersion 25
buildToolsVersion "25.0.2"
defaultConfig {
minSdkVersion 19
targetSdkVersion 25
versionCode 1
versionName getCurrentVersion()
vectorDrawables.useSupportLibrary = true
manifestPlaceholders = [hostNameDeepLink: "http://***.**.in:203/api/"]
buildConfigField "String", "CodeRevision", "\"{$gitSha}\""
multiDexEnabled true
renderscriptTargetApi 19
renderscriptSupportModeEnabled true
}
testOptions {
unitTests.returnDefaultValues = true
}
packagingOptions {
pickFirst 'META-INF/rxjava.properties'
}
signingConfigs {
planet {
storeFile file('../****.jks')
storePassword '***@123'
keyAlias '***'
keyPassword '***@123'
}
}
dataBinding {
enabled = true
}
lintOptions {
disable 'InvalidPackage'
abortOnError false
}
dexOptions {
jumboMode true
}
productFlavors {
local {
String WebServiceUrl = getWebServiceUrl()
String WebSitePath = getWebSitePath()
String ImageUrl = getImageUrl()
String ServerName = getServerName()
String TestCustomerId = getWebSitePath()
buildConfigField "String", "WebServiceUrl", "\"$WebServiceUrl\""
buildConfigField "String", "WebSitePath", "\"$WebSitePath\""
buildConfigField "String", "ImageUrl", "\"$ImageUrl\""
buildConfigField "String", "ServerName", "\"$ServerName\""
buildConfigField "String", "TestCustomerId", "\"$TestCustomerId\""
manifestPlaceholders = [hostNameDeepLink: "http://10.160.0.18"]
}
live {
String WebServiceUrl = getWebServiceUrl()
String WebSitePath = getWebSitePath()
String ImageUrl = getImageUrl()
String ServerName = getServerName()
String TestCustomerId = getWebSitePath()
buildConfigField "String", "WebServiceUrl", "\"$WebServiceUrl\""
buildConfigField "String", "WebSitePath", "\"$WebSitePath\""
buildConfigField "String", "ImageUrl", "\"$ImageUrl\""
buildConfigField "String", "ServerName", "\"$ServerName\""
buildConfigField "String", "TestCustomerId", "\"$TestCustomerId\""
/*buildConfigField "String", "WebServiceUrl", "\"http://perfectmother.zoomi.in:203/api/\""
buildConfigField "String", "WebSitePath", "\"http://perfectmother.zoomi.in:203/\""
buildConfigField "String", "ImageUrl", "\"http://perfectmother.zoomi.in:203\""
buildConfigField "String", "ServerName", "\"-Live\""
buildConfigField "String", "TestCustomerId", "\"10086\""*/
manifestPlaceholders = [hostNameDeepLink: "http://perfectmother.zoomi.in"]
}
}
buildTypes {
release {
signingConfig signingConfigs.planet
shrinkResources true
minifyEnabled true
zipAlignEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
debuggable false
}
debug {
signingConfig signingConfigs.planet
debuggable true
minifyEnabled false
shrinkResources false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro', 'proguard-rules-debug.pro'
}
}
}
def static getCurrentVersion() {
def buildEnv = System.getenv("BUILD_NUMBER")
def buildNumber = buildEnv != null ? ".${buildEnv}" : ""
return "1.0" + buildNumber
}
def getWebServiceUrl() {
return hasProperty('WebServiceUrl') ? WebServiceUrl : ''
}
def getWebSitePath() {
return hasProperty('WebSitePath') ? WebSitePath : ''
}
def getImageUrl() {
return hasProperty('ImageUrl') ? ImageUrl : ''
}
def getServerName() {
return hasProperty('ServerName') ? ServerName : ''
}
def getTestCustomerId() {
return hasProperty('TestCustomerId') ? TestCustomerId : ''
}
ext {
playServiceVersion = '10.2.1'
supportLibVersion = '25.3.1'
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
testCompile 'junit:junit:4.12'
compile "com.android.support:appcompat-v7:$supportLibVersion"
// Unit testing
testCompile 'org.robolectric:robolectric-resources:3.0'
testCompile 'org.robolectric:shadows-core:3.2.2'
testCompile 'org.robolectric:robolectric:3.2.2'
testCompile 'junit:junit:4.12'
testCompile 'org.mockito:mockito-core:2.6.3'
//Hamcrest
testCompile 'org.hamcrest:hamcrest-all:1.3'
//Retrofit
compile 'com.squareup.retrofit2:retrofit:2.1.0'
compile 'com.squareup.retrofit2:converter-gson:2.1.0'
compile 'com.squareup.retrofit2:adapter-rxjava:2.1.0'
compile 'com.squareup.okhttp3:logging-interceptor:3.6.0'
//Zoomi library
compile 'com.zoomi.android:utils:1.0'
compile 'com.zoomi.android:rxutils:1.5.1'
//CardView:
compile "com.android.support:cardview-v7:$supportLibVersion"
//RecyclerView:
compile "com.android.support:recyclerview-v7:$supportLibVersion"
//Design
compile "com.android.support:design:$supportLibVersion"
//Glide
compile 'com.github.bumptech.glide:glide:3.7.0'
//Dagger
compile 'com.google.dagger:dagger:2.9'
annotationProcessor 'com.google.dagger:dagger-compiler:2.9'
//Auto Value
annotationProcessor 'com.google.auto.value:auto-value:1.3'
provided 'com.google.auto.value:auto-value:1.3'
//Auto Value GSON
annotationProcessor 'com.ryanharter.auto.value:auto-value-gson:0.4.6'
provided 'com.ryanharter.auto.value:auto-value-gson:0.4.6'
//Auto Value Parcelable
annotationProcessor 'com.ryanharter.auto.value:auto-value-parcel:0.2.5'
provided 'com.ryanharter.auto.value:auto-value-parcel:0.2.5'
//Rx
compile 'io.reactivex:rxandroid:1.2.1'
compile 'io.reactivex:rxjava:1.1.6'
//Timber
compile 'com.jakewharton.timber:timber:4.3.1'
//FOR CI
compile "com.google.firebase:firebase-core:$playServiceVersion"
//Fire base crash reporting
compile "com.google.firebase:firebase-crash:$playServiceVersion"
//Fire base authentication
compile "com.google.firebase:firebase-auth:$playServiceVersion"
compile "com.google.android.gms:play-services-auth:$playServiceVersion"
//bottom bar
compile 'com.aurelhubert:ahbottomnavigation:2.0.4'
//Groupie
compile 'com.genius:groupie:0.8.0'
//PageIndicator
compile 'com.romandanylyk:pageindicatorview:0.1.1'
//FiftyShadesOf
compile 'com.github.florent37:fiftyshadesof:1.0.0'
//Proguard Snippets
compile 'com.github.PrashamTrivedi:ProguardSnips:0.1-snapshot'
//ProGuard rules for RxJava!
compile 'com.artemzin.rxjava:proguard-rules:1.2.4.0'
//Facebook
compile 'com.facebook.android:facebook-android-sdk:4.19.0'
//Twitter
compile('com.twitter.sdk.android:twitter:2.3.1@aar') {
transitive = true
}
// Crop image
compile 'com.theartofdev.edmodo:android-image-cropper:2.3.1'
//Show case
compile 'com.github.deano2390:MaterialShowcaseView:1.1.0'
//GSON
compile 'com.google.code.gson:gson:2.8.0'
//Constraint layout
compile 'com.android.support.constraint:constraint-layout:1.0.2'
//Firebase cloud messaging
compile 'com.google.firebase:firebase-messaging:10.2.0'
}
buildscript {
repositories {
jcenter()
maven { url 'https://maven.fabric.io/public' }
}
dependencies {
classpath 'com.google.gms:google-services:3.0.0'
classpath 'io.fabric.tools:gradle:1.22.1'
}
}
allprojects {
repositories {
mavenCentral()
jcenter()
maven { url 'http://**.***.**.**:81/release/' }
maven { url "https://jitpack.io" }
maven { url 'https://maven.fabric.io/public' }
}
}
apply plugin: 'com.google.gms.google-services'
最佳答案
“br”导入文件丢失。
在模型类中添加以下导入文件:
import com.yourpackagename.BR;
关于android - 错误:找不到符号类BR,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43154813/
我们的 CMS 将换行符输出为 (愚蠢,我知道,但在语法上是正确的(?)) 这转换为 在 chrome 和 IE10 中到 在火狐中。 所有浏览器都将其显示为两个换行符。 为什么不是翻译成或者只是
我正在尝试将一堆 HTML 文档转换为 XML 合规性(通过 java 方法),并且有很多 (1) 未封闭或 (2) 包含属性的标签。由于某种原因,我使用的正则表达式无法处理包含属性的标签。这是代码
如何转换字符串 "" to "" using java's String.replaceAll(String, String) method? 我都试过了: str.replaceAll("+
这个问题的答案是 community effort 。编辑现有答案以改进这篇文章。它目前不接受新的答案或交互。 我试过检查 other answers ,但我仍然感到困惑——尤其是在看到 W3scho
问题是我无法通过生产者脚本将消息发送到集群内的任何代理。 该设置是一个单一的 Zookeeper 服务器,使用默认设置在 IP (192.168.10.2:2181) 上运行。 此外,还有 3 个代理
我正在尝试使用 python 和 Beautiful Soup 4 用新行替换某些 html 中的每个中断标记。 该文档有 , 和标签,但由于 Beautiful Soup 处理标签的方式,每当它找到
我正在使用带有模板工具包的 perl 生成网页,我在 HTML 文件上更改了一些 JS 代码,编辑后有 显示在 UI 上,我不知道如何,奇怪的是没有 源码中,只有在Inspect element On
这是 HTML 页面的完整源代码: one two three four 谁能解释一下为什么我在IE8或chrome浏览页面时,“三”和“四”之间多了一个空行? 我认为标准应该让所有
我正在使用 并且它按预期在 chrome 和 IE 中正常工作,但在 firefox 中结果很奇怪。当我在 firefox 中看到代码时,它替换了 与 . 我还在某处读到替代语法 XML 允许在许
我有将 BBCode 替换为 html 的代码,当我想替换标签时出现问题 或 [br /]在 [pre=html] code [/pre] 内. Regex exp; string str; str
这个问题不太可能对任何 future 的访客有帮助;它只与一个小的地理区域、一个特定的时间点或一个非常狭窄的情况相关,通常不适用于互联网的全局受众。如需帮助使这个问题更广泛适用,visit the h
我正在使用这个(jQuery)来替换所有 与清除验证错误: $("").replaceAll(""); 但它不会减少任何验证错误。验证器是否检查原始来源? 最佳答案 JQuery 仅在文档呈现后才
我想获取 break html 中的文本,但这不是用段落换行,只是break内的文本。 Division 是我唯一的标识符,它是“Msg”。我怎样才能获得每个元素之一? H
Hood switch - (automatic transmission only).<br><br>Hood Switch (2013 CX-5 - not requir
我想选择 br 后面没有跟另一个 br 的元素。 例如。 sometextadsf 我想选择这两个元素。 sometextadsf 我只想选择 2 个 br 元素,而不是 4 个。 我看过这个问题,但
这个问题在这里已经有了答案: HTML 5: Is it , , or ? (18 个答案) 关闭 9 年前。 当我开始从 w3schools 学习 HTML 时,他们正在使用这个 .当我开始学习
我是 nagios 新手,我已经在我的 Linux 机器上安装了 nagios 3。 我想安装 nagios check_procs 插件。有人可以建议我吗。谢谢 最佳答案 您可以从依赖于您使用的 L
我有一个段落有一些单一的 和双 . 我想添加所有单个 , 但不是双 . 这怎么可能? 如果我用 p br {display:none} 它隐藏了所有的 br 标签。但是,当我有两个 br 时,我希
之间的主要区别是什么?和 在 html 标记中?有人可以解释两者的主要区别,因为这让我感到困惑。预先感谢您的所有评论。 :) 最佳答案 在实践中,不存在。就或 . 但是,区别在于位置,并且对所有
我如何使用JavaScript来检测 成为一个 ? 我试过: jQuery('body').html().replace(/(\\r\n){3, }/g,"\n"); 但这对我不起作用。 最佳
我是一名优秀的程序员,十分优秀!