"after updating android studio to version 1.3.0 i am getting “ndk integration is deprecated in the current plugin” error" Code Answer

4

here is how to solve this issue :

  1. add gradle.properties file to root folder of your project
  2. add 'android.usedeprecatedndk=true' to gradle.properties file

here is my gradle.properties :

# project-wide gradle settings.

# ide (e.g. android studio) users:
# gradle settings configured through the ide *will override*
# any settings specified in this file.

# for more details on how to configure your build environment visit
# http://www.gradle.org/docs/current/userguide/build_environment.html

# specifies the jvm arguments used for the daemon process.
# the setting is particularly useful for tweaking memory settings.
# default value: -xmx10248m -xx:maxpermsize=256m
# org.gradle.jvmargs=-xmx2048m -xx:maxpermsize=512m -xx:+heapdumponoutofmemoryerror -dfile.encoding=utf-8

# when configured, gradle will run in incubating parallel mode.
# this option should only be used with decoupled projects. more details, visit
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true

android.usedeprecatedndk=true

and add it to root of your project :

and rebuild your project. thats it.

By Orme on July 10 2022

Answers related to “after updating android studio to version 1.3.0 i am getting “ndk integration is deprecated in the current plugin” error”

Only authorized users can answer the Search term. Please sign in first, or register a free account.