Llevo una semana con este problema y no tengo idea de que hacer para correr este proyecto, funciona solo con versiones viejas y el único error que tengo es:
11/22 11:55:04: Launching 'app' on Nexus 9 API 28.
Installation did not succeed.
The application could not be installed: INSTALL_FAILED_NO_MATCHING_ABIS
List of apks:
[0] 'C:\Users\CGURDIAN\AndroidStudioProjects\SystemaAutoNica\app\build\outputs\apk\debug\app-debug.apk'
Installation failed due to: 'Failed to commit install session 1980879177 with command cmd package install-commit 1980879177. Error: INSTALL_FAILED_NO_MATCHING_ABIS: Failed to extract native libraries, res=-113'
Retry
apply plugin: 'com.android.application'
android {
compileSdkVersion 31
defaultConfig {
applicationId "com.example.administrador.systemaautonica"
minSdkVersion 22
targetSdkVersion 31
versionCode 3
versionName '3.1.0.0'
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility 1.8
targetCompatibility 1.8
}
ndkVersion '22.1.7171670'
buildToolsVersion '31.0.0'
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
/*implementation 'com.android.support.constraint:constraint-layout:1.1.3'*/
implementation 'androidx.constraintlayout:constraintlayout:2.1.1'
implementation 'androidx.appcompat:appcompat:1.3.1'
implementation 'com.google.android.material:material:1.4.0'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
testImplementation 'junit:junit:4.13.2'
implementation files('libs/jtds-1.3.1.jar')
implementation files('libs/sqljdbc4-3.0.jar')
implementation files('libs/commons-codec-1.7.jar')
implementation files('libs/crypto-1.0.0.jar')
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
implementation 'com.github.Vatican-Cameos:CarouselPicker:v1.0'
implementation 'com.raed.drawingview:drawingview:1.3.0'
implementation 'com.github.channguyen:rsv:1.0.1'
implementation 'com.itextpdf:itextg:5.5.10'
implementation 'com.github.gcacace:signature-pad:1.3.1'
implementation 'com.github.shrikanth7698:Collapsible-Calendar-View-Android:v1.0.1'
implementation 'com.nightonke:boommenu:2.1.1'
implementation 'com.commit451:PhotoView:1.2.4'
implementation 'com.sun.mail:android-mail:1.6.5'
implementation 'com.sun.mail:android-activation:1.6.7'
}
ext {
var = 'RecepcionAutonica'
}// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
mavenCentral()
jcenter()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.0.3'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
mavenCentral()
maven {
}
maven {
}
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
Ayuda, por favor, estoy a poco de reacer todo el proyecto.