-
Notifications
You must be signed in to change notification settings - Fork 24.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update the new app template to use CMake instead of Android.mk (#34354)
Summary: Pull Request resolved: #34354 This change simplifies the setup for New Architecture for users on Android. Instead of using the Android.mk file, users can now use a CMake file which encapsulate a lot of the complexities and reduces the maintainance cost. Android.mk support is kept for backward compatibility. Changelog: [Android] [Changed] - Update the new app template to use CMake instead of Android.mk Reviewed By: cipolleschi Differential Revision: D38460536 fbshipit-source-id: 9d4c3b15be751921d34023b24c174044537e6f02
- Loading branch information
1 parent
be35c6d
commit dfd7f70
Showing
3 changed files
with
21 additions
and
79 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
cmake_minimum_required(VERSION 3.13) | ||
|
||
# Define the library name here. | ||
project(rntester_appmodules) | ||
|
||
# This file includes all the necessary to let you build your application with the New Architecture. | ||
include(${REACT_ANDROID_DIR}/cmake-utils/ReactNative-application.cmake) |