每次我尝试编译APK或使用命令 / lintdebug (我是Windows用户)我都会收到错误消息。我知道我可以通过在build.gradle 中添加一些lint配置行来跳过此问题,,但是我希望我的项目干净,没有错误或警告。
检查是否是由于 Firebase Firestore的依赖性引起的,因为当我从依赖性列表中将其删除时,错误消失了。
这是我的错误,希望有人可以帮助我。
from sklearn.model_selection import train_test_split
SEED = 2000
x_train, x_validation, y_train, y_validation = train_test_split(data.SentimentText, data.Sentiment, test_size=.2, random_state=SEED)
def labelize_text(text,label):
result = []
prefix = label
for i, t in zip(text.index, text):
result.append(LabeledSentence(t.split(), [prefix + '_%s' % i]))
return result
all_x = pd.concat([x_train,x_validation])
all_x_w2v = labelize_text(all_x, 'ALL')
答案 0 :(得分:1)
此问题已在grpc 1.20.0中修复。修改您的app / build.gradle以将此版本的grpc包括在依赖项列表中。
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'io.grpc:grpc-core:1.20.0'
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
}