Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions .github/workflows/label.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# This workflow will triage pull requests and apply a label based on the
# paths that are modified in the pull request.
#
# To use this workflow, you will need to set up a .github/labeler.yml
# file with configuration. For more information, see:
# https://github.com/actions/labeler

name: Labeler
on: [pull_request_target]

jobs:
label:

runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write

steps:
- uses: actions/labeler@v4
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
3 changes: 2 additions & 1 deletion ExampleApp/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ tasks.withType(com.android.build.gradle.tasks.PackageApplication) { pkgTask ->
*/
task renameExecutables(type: Copy) {
from 'libs'
into 'libs'
in
to 'libs'
include '**/*'
exclude '**/*.so'
exclude '**/*.jar'
Expand Down
3 changes: 2 additions & 1 deletion ExampleApp/jni/Application.mk
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@ APP_ABI := armeabi x86 mips
#APP_ABI := armeabi armeabi-v7a x86 mips

# If APP_MODULES is not set, all modules are compiled!
APP_MODULES := hello_world
APP_MODUAPP_MODULES := hello_world
LES := hello_world
Loading