Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android NDK: Application targets deprecated ABI(s): armeabi error after update NDK

Yesterday, after updating NDK I'm having these errors:

Error:(81) Android NDK: Application targets deprecated ABI(s): armeabi
Error:(82) Android NDK: Support for these ABIs will be removed in a 
future NDK release.    

This links directed me to setup-app.mk file on lines

_deprecated_abis := $(filter $(NDK_DEPRECATED_ABIS),$(NDK_APP_ABI))
ifneq ($(_deprecated_abis),)
  $(call __ndk_warning,Application targets deprecated ABI(s): 
  $(_deprecated_abis))
  $(call __ndk_warning,Support for these ABIs will be removed in a 
  future NDK release.)
endif

I have no idea, how to solve this problem. Any advice?

like image 518
Vadym Avatar asked Nov 15 '17 08:11

Vadym


3 Answers

I had the same problem and was just avoiding cleaning or rebuilding the whole project until I got the latest NDK update and the problem re-emerged.

This happens because even after removing the targets, there are still files present in app/.externalNativeBuild that refers to them.

To fix this I removed the Application.mk (which I was using to set the targets) and added this lines to app/build.gradle

android {
    defaultConfig {

        // ...

        ndk {
            abiFilters 'armeabi-v7a', 'arm64-v8a' // 'x86', 'x86_64' may be added
        }
   }

   // ...

    task ndkClean(type: Delete) {
        // remove unused archs from build cache
        delete fileTree('.externalNativeBuild') {
            exclude defaultConfig.ndk.abiFilters.collect { '**/' + it }
        }
    }
    tasks.findByPath(':clean').dependsOn ndkClean
}
like image 154
drruggeri Avatar answered Oct 14 '22 01:10

drruggeri


In Application.mk file, you should set APP_ABI:= armeabi armeabi-v7a x86 mips then sync project. It would solve your problem.

like image 27
nguyen nam Avatar answered Oct 14 '22 01:10

nguyen nam


Remove armeabi from your APP_ABI list.

As you can see from the source though, it should be a warning, not an error. How are you invoking ndk-build?

like image 30
Dan Albert Avatar answered Oct 14 '22 03:10

Dan Albert