Discover how React Native functions internally, and what it does for you without you knowing it. Disclaimer: this articles assumes a (very) basic understanding of React Native and Native Modules. If you have never played around with them, I’d recomme…
This blog is inspired by this tutorial http://mhandroid.wordpress.com/2011/01/23/using-eclipse-for-android-cc-debugging/, but that tutorial is for NDK. However what I am doing is a pure Native debugging (AOSP 4.2.2 + a Pure Native C++ application, so…
Run native executable in Android App Demo † Here's demo application called "Run Native Exe" to: run local UNIX commands run native executable downloaded from the Web Package: NativeExe-0.2.apkSource code: on Github (ADT project) To install the p…
Table of Contents Introduction Key concepts Collect topology configuration data Generate a runbook from the topology Install a deployable package Back up the database and computer instance Update files Run database synchronization Start all services…
Background Maybe you have decided to get an app built. You will not build it yourself (obviously!) so you have done your homework properly, went out and got a few quotes (that’s more than 2, please) to establish the cost of getting this built. The on…
http://www.android-doc.com/guide/topics/manifest/manifest-intro.html It names the Java package for the application. The package name serves as a unique identifier for the application. However, as a shorthand, if the first character of the string is a…
We can access web pages in our React Native application using the WebView component. We will connect the links in our repository component to their Github web page when a user click on them. Navigate to WebView component: openPage(url){ this.props.na…
What is Application Application和Activity,Service一样是android框架的一个系统组件,当android程序启动时系统会创建一个 application对象,用来存储系统的一些信息.通常我们是不需要指定一个Application的,这时系统会自动帮我们创建,如果需要创建自己 的Application,也很简单创建一个类继承 Application并在manifest的application标签中进行注册(只需要给Application标签增加个na…
//// Copyright 2012 Square Inc.//// Licensed 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/L…
转自:https://linuxconfig.org/how-to-create-an-rpm-package Rpm is both the package manager and the package format used by many linux distributions such as Fedora, Red Hat and CentOS, to manage and distribute software in binary form. In this tutorial we…
[React Native 初步] 1.Create React Native App is the easiest way to start building a new React Native application. It allows you to start a project without installing or configuring any tools to build native code - no Xcode or Android Studio installati…
1.通过JNI和c/c++的库组件.其他代码交互 2.java和c不能互通的原因时数据类型问题 Introduction https://docs.oracle.com/javase/8/docs/technotes/guides/jni/spec/intro.html#java_native_interface_overview This chapter introduces the Java Native Interface (JNI). The JNI is a native progra…