All Projects → androidthings → native-libandroidthings

androidthings / native-libandroidthings

Licence: Apache-2.0 license
NDK library for exposing Peripheral I/O APIs in C/C++

Programming Languages

c
50402 projects - #5 most used programming language
CMake
9771 projects

Projects that are alternatives of or similar to native-libandroidthings

Sample Simplepio
Basic Peripheral I/O examples with Android Things
Stars: ✭ 191 (+582.14%)
Mutual labels:  android-things
android tflite
GPU Accelerated TensorFlow Lite applications on Android NDK. Higher accuracy face detection, Age and gender estimation, Human pose estimation, Artistic style transfer
Stars: ✭ 105 (+275%)
Mutual labels:  android-ndk
sensorhub-cloud-iot
Sensor-based data collection device publishing to Cloud IoT Core
Stars: ✭ 73 (+160.71%)
Mutual labels:  android-things
swift-everywhere-toolchain
Automated workflow to compile Swift Toolchain, for making Android apps with Swift.
Stars: ✭ 85 (+203.57%)
Mutual labels:  android-ndk
sample-lowpan
Discover and connect to Thread mesh networks on Android Things
Stars: ✭ 28 (+0%)
Mutual labels:  android-things
edison-candle
Production sample using Android Things
Stars: ✭ 42 (+50%)
Mutual labels:  android-things
Drivers Samples
Peripheral driver samples
Stars: ✭ 153 (+446.43%)
Mutual labels:  android-things
ThingsCommander
Things Commander System, based on Android Things developer preview 2
Stars: ✭ 13 (-53.57%)
Mutual labels:  android-things
Fool
Simple Russian voice assistant based on Android Things and Raspberry Pi 3
Stars: ✭ 26 (-7.14%)
Mutual labels:  android-things
atdocs
Android Things Translation 中文翻译
Stars: ✭ 19 (-32.14%)
Mutual labels:  android-things
android-gcc-toolchain
Enable you to use NDK's standalone toolchain easily, quickly and magically for cross-compile
Stars: ✭ 49 (+75%)
Mutual labels:  android-ndk
FRILLER
FRILLER is a 3D printed compact robot that can change the radius of its wheels to overcome obstacles.
Stars: ✭ 15 (-46.43%)
Mutual labels:  android-things
Inimesed
An Android app that lets you search your contacts by voice. Internet not required. Based on Pocketsphinx. Uses Estonian acoustic models.
Stars: ✭ 65 (+132.14%)
Mutual labels:  android-ndk
Weatherstation
Sensor-based peripheral sample using Android Things
Stars: ✭ 210 (+650%)
Mutual labels:  android-things
androidthings-weatherstation
Codelab and solution for the Android Things Weatherstation
Stars: ✭ 16 (-42.86%)
Mutual labels:  android-things
Sample Bluetooth Le Gattserver
Build a Bluetooth GATT server with Android Things
Stars: ✭ 159 (+467.86%)
Mutual labels:  android-things
androidthings-mqtt-alarm-panel
Android Things Alarm Control Panel for Home Assistant
Stars: ✭ 69 (+146.43%)
Mutual labels:  android-things
GTKAndroid
GTK+Android
Stars: ✭ 73 (+160.71%)
Mutual labels:  android-ndk
android-things-rc522
Android library to communicate with RFID Module RC522
Stars: ✭ 44 (+57.14%)
Mutual labels:  android-things
gooid
Go bindings for Android NDK
Stars: ✭ 48 (+71.43%)
Mutual labels:  android-ndk

Android Things Native Library

This repository contains the symbols and the headers for the Android Things Native PIO API for the following architecture:

  • armeabi-v7a
  • x86

Note: The Android Things Console will be turned down for non-commercial use on January 5, 2022. For more details, see the FAQ page.

Usage

  • Unzip the latest release in the native project directory (or in a shared location if you have many native projects).
  • Add the following lines to the native project CMakeLists.txt:
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} <path_to_FindAndroidThings_directory.cmake>)
find_package(AndroidThings REQUIRED)
include_directories(${ANDROIDTHINGS_INCLUDE_DIRS})
target_link_libraries(<your_target_name> ${ANDROIDTHINGS_LIBRARIES})
  • Add the following arch to the native module build.gradle:
defaultConfig {
    ndk {
        abiFilters 'armeabi-v7a', 'x86'
    }
}

License

Copyright 2016 The Android Open Source Project, Inc.

Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].