当前位置: 首页 > 知识库问答 >
问题:

生成错误:Jack需要24.0.0或更高版本的生成工具

曾嘉福
2023-03-14

我在android项目中使用RX库,由于某些原因,我需要进行构建。格拉德尔:

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'
}

我也访问过这个和这个,但无法修复它。我的项目代码是RegisterActivity。JAVA

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));
}


}

提前谢谢

共有2个答案

梁丘柏
2023-03-14

现在你最好用

buildToolsVersion = "24.0.0"
呼延河
2023-03-14

正如错误所说,您已经更改了buildToolsVersion

buildToolsVersion "23.0.3" 

BuildToolsVersion"24rc3"this.

BuildToolsVersion="24.0.0 rc1"this.

 类似资料:
  • 我在androidstudio中导入一个cordova项目,并得到一个错误:找不到已安装的构建工具。请安装Android构建工具版本19.1.0或更高版本。 我已经安装了所有的构建工具。甚至我已经通过了这篇文章,但不能解决错误。 链接1链接2 我在操作系统上看到了很多问题,但没有得到任何解决方案。 我们将不胜感激。谢谢

  • 我试图为我的离子4应用程序构建和生成一个apk。当我尝试这样做时,我会遇到以下错误: 对于这个问题,我已经在Stackoverflow上查看了许多其他解决方案,但没有任何解决方案能解决我的问题。我已经通过Android Studio SDK Manager安装了Android SDK和SDK工具。

  • 到今天为止,我在Android Studio中设置新项目时遇到了一个错误。在创建一个空白项目之后,日志提到“Gradle sync failed:failed Tools revision 24.0.0 RC1”。 首先,我在网上查看如何解决这个问题,遇到了类似的问题,并遵循了给出的解决方案(在模块设置中设置构建工具版本)。然而,这导致Android Studio告诉我找不到方法“Android(

  • 我试图在Android Studio中打开一个Ionic2项目,但它在事件日志中给我以下错误:“Gradle同步失败:找不到已安装的构建工具。安装Android构建工具版本19.1.0或更高版本。有关更多详细信息,请参阅IDE日志(帮助|显示日志)”屏幕截图 我以前也看到过类似的问题(也可能是最新发布的Ionic2或Cordova破坏了某些东西)- 从gradle.build文件或项目结构中更改“

  • 我试图建立APK,以张贴我的请求在离子在游戏商店。但是当涉及到下面的命令时,我得到了错误: PS c:\projetos\xxx>jarsigner-verbose-sigalg sha1withrsa-digestalg sha1-keystore android.keystore platforms/android/app/build/outputs/apk/release/app-relea