java – 构建错误:Jack需要构建工具24.0.0或更高版本
发布时间:2020-12-15 04:34:28 所属栏目:Java 来源:网络整理
导读:我在我的 android项目中使用RX库,由于某些原因,我需要将build.gradle作为: apply plugin: 'com.android.application'android {compileSdkVersion 23buildToolsVersion "23.0.3"defaultConfig { applicationId "com.urjapawar.bevyotp" minSdkVersion 18 tar
|
我在我的
android项目中使用RX库,由于某些原因,我需要将build.gradle作为:
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.3"
defaultConfig {
applicationId "com.urjapawar.bevyotp"
minSdkVersion 18
targetSdkVersion 23
versionCode 1
versionName "1.0"
jackOptions {
enabled true
}
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'),'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
dependencies {
compile fileTree(dir: 'libs',include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.4.0'
compile 'com.android.support:support-v4:23.4.0'
compile 'com.android.support:recyclerview-v7:23.4.0'
compile 'io.reactivex:rxandroid:0.24.0'
}
我已经访问了this和this too,但无法修复它.我的项目代码是 public class RegisterActivity extends AppCompatActivity {
EditText name,email,phonenumber,city;
Button button;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_register);
name = (EditText) findViewById(R.id.nameinput);
email = (EditText) findViewById(R.id.emailinput);
phonenumber = (EditText) findViewById(R.id.phonenumber);
city = (EditText) findViewById(R.id.cityName);
final Pattern emailPattern = Pattern.compile(
"^[_A-Za-z0-9-+]+(.[_A-Za-z0-9-]+)*@"
+ "[A-Za-z0-9-]+(.[A-Za-z0-9]+)*(.[A-Za-z]{2,})$");
Observable<Boolean> userNameValid = WidgetObservable.text(name) // [2]
.map(e -> e.text())
.map(t -> t.length() != 0);
Observable<Boolean> emailValid = WidgetObservable.text(email)
.map(e -> e.text())
.map(t -> emailPattern.matcher(t).matches());
Button registerButton = (Button) findViewById(R.id.button3);
Observable<Boolean> registerEnabled =
Observable.combineLatest(userNameValid,emailValid,(a,b) -> a && b);
// registerEnabled.subscribe(enabled -> registerButton.setEnabled(enabled));
emailValid.distinctUntilChanged()
.doOnNext(b -> Log.d("[Rx]","Email " + (b ? "Valid" : "Invalid")))
.map(b -> b ? Color.BLACK : Color.RED)
.subscribe(color -> email.setTextColor(color));
userNameValid.distinctUntilChanged()
.doOnNext(b -> Log.d("[Rx]","Uname " + (b ? "Valid" : "Invalid")))
.map(b -> b ? Color.BLACK : Color.RED)
.subscribe(color -> name.setTextColor(color));
// and registerEnabled
registerEnabled.distinctUntilChanged()
.doOnNext(b -> Log.d("[Rx]","Button " + (b ? "Enabled" : "Disabled")))
.subscribe(enabled -> registerButton.setEnabled(enabled));
}
public void OTPbutton(View view){
startActivity(new Intent(RegisterActivity.this,ChooseActivity.class));
}
}
这是日志
提前致谢 解决方法
由于错误说您已更改buildToolsVersion
buildToolsVersion "23.0.3" 至 buildToolsVersion“24rc3”这个. 要么 buildToolsVersion =“24.0.0 rc1”这个. (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |

