Skip to content
This repository was archived by the owner on Aug 30, 2023. It is now read-only.
Merged
Changes from 4 commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
858e35a
plug in sentry-native
bruno-garcia Oct 3, 2019
bca5858
Merge branch 'master' of github.com:getsentry/sentry-android into fea…
bruno-garcia Oct 7, 2019
f775e74
fix: lib name
bruno-garcia Oct 8, 2019
62dc8ff
feat: Link with sentry-native
tonyo Oct 8, 2019
80c1630
Update sentry-android-ndk/build.gradle.kts
bruno-garcia Oct 9, 2019
39cc3f4
ref: self close tag
bruno-garcia Oct 9, 2019
0e8cec2
ref: fix symlink
mitsuhiko Oct 9, 2019
bd46263
ref: Fixed the print callback
mitsuhiko Oct 10, 2019
25081a8
Update sentry-android-ndk/CMakeLists.txt
bruno-garcia Oct 12, 2019
b50fdab
Merge branch 'master' of github.com:getsentry/sentry-android into fea…
bruno-garcia Oct 14, 2019
dbc9c11
fix: Rely on permission defined in SDK
bruno-garcia Oct 14, 2019
f623c99
Update sentry-android-ndk/CMakeLists.txt
bruno-garcia Oct 14, 2019
2a1e1e0
Update sentry-android-ndk/CMakeLists.txt
bruno-garcia Oct 14, 2019
6a8635a
Update sentry-android-ndk/CMakeLists.txt
bruno-garcia Oct 14, 2019
68a2047
feat: Init SentryNdk when available
bruno-garcia Oct 14, 2019
40fd845
Merge branch 'master' of github.com:getsentry/sentry-android into fea…
bruno-garcia Oct 14, 2019
eba52d1
Merge branch 'feat/ndk' of github.com:getsentry/sentry-android into f…
bruno-garcia Oct 15, 2019
0b682d0
fix merge conflict
Oct 18, 2019
8b0d497
feat: Some ugly code to do something
mitsuhiko Oct 22, 2019
ce4e004
lint
bruno-garcia Oct 22, 2019
63efb43
Merge branch 'master' of github.com:getsentry/sentry-android into fea…
bruno-garcia Oct 22, 2019
12e6b9f
ref: remove symlink
bruno-garcia Oct 22, 2019
afbb473
feat: sentry-native submodule ndk branch
bruno-garcia Oct 22, 2019
e0bcee9
feat(ndk): Specify SENTRY_NATIVE_SRC in build.gradle
tonyo Oct 22, 2019
8c62844
try: Conditional sentry-native usage
tonyo Oct 22, 2019
5f8e145
feat: Use submodule or local override
bruno-garcia Oct 22, 2019
d11b2b7
ref: set compat version
bruno-garcia Oct 22, 2019
5fa906a
feat: Build NDK only for specific platforms if ABI is set
tonyo Oct 23, 2019
0f1fa04
fix: target of the symbolic link is taken literally from the first ar…
bruno-garcia Oct 23, 2019
6331600
Update README.md
bruno-garcia Oct 23, 2019
51c439e
Update README.md
bruno-garcia Oct 23, 2019
95b7f18
Merge branch 'master' into feat/ndk-submodule
bruno-garcia Oct 23, 2019
d779142
ref: API 14 doesn't support multi catch exception
bruno-garcia Oct 23, 2019
5f43c79
feat: Use API 14
bruno-garcia Oct 23, 2019
adc8f19
Merge branch 'master' of github.com:getsentry/sentry-android into fea…
bruno-garcia Oct 23, 2019
8c9ea4d
ref: Use const for version
bruno-garcia Oct 23, 2019
9e03b27
ref: Fix linter
bruno-garcia Oct 23, 2019
88c0285
ref: meta-package requires highest API lvl
bruno-garcia Oct 23, 2019
3613ee2
Merge branch 'master' of github.com:getsentry/sentry-android into fea…
bruno-garcia Oct 23, 2019
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
6 changes: 3 additions & 3 deletions sentry-android-ndk/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
cmake_minimum_required(VERSION 3.4.1)
project("sentry-android")

# Adding NDCrash submodule subdirectory
# Adding sentry-native submodule subdirectory
add_subdirectory("sentry-native")

# sentry-native submodule include path.
include_directories("sentry-native/include")

# JNDCrash source code.
# sentry-native source code.
file(GLOB SENTRY_ANDROID_SOURCES ${CMAKE_SOURCE_DIR}/src/main/jni/*.c)

# Adding dynamic library and linking it with log and NDCrash.
# Adding dynamic library and linking it with log and sentry-native.
add_library("sentry-android" SHARED ${SENTRY_ANDROID_SOURCES})
find_library(LOG_LIB log)
target_link_libraries("sentry-android" "sentry" ${LOG_LIB})