Android Game Development Practice (1) NDK and JNI Development 04

Android Game Development Practice (1) NDK and JNI Development 04 With the previous several articles NDK and JNI development-related foundation to pave the way, and then through the code to explain the specific operation of this area and some important details. Then, continue to learn NDK and JNI summary. Author: AlphaGL. Copyright is reserved. ...

Posted by drock on Tue, 02 Apr 2019 23:21:29 -0700

Code obfuscation and packaging in Android Studio

[+] After two days of fumbling, I learned about the process of code obfuscation and package publishing in Android Studio, which is recorded here. Code obfuscation: The role of code obfuscation is not explained much. The whole process is roughly as follows: Add the following code to the build.gradle file under app (min ...

Posted by MARIOPARTY53 on Sun, 31 Mar 2019 20:39:30 -0700

Android Hot Repair: Andfix and Hotfix, Comparison and Implementation of Two Solutions

android thermal repair technology I think the earliest should be QQ Space Team The solution, which was really needed later, was carefully investigated. Among the current solutions, Ali has two kinds of Dexposed and Dexposed. Andfix framework Because the former one does not support android system above 5.0, we will look at Andfix as the soluti ...

Posted by swampster on Sat, 30 Mar 2019 09:51:29 -0700

You don't know some amazing Android Api

Links to the original text: http://www.jianshu.com/p/4d21341f94ee  This will be a series of articles about Android Api. AntSoft's Android team has been following the technological frontier for more than eight years, training Android technology in Budapest University of Technology and Economics. There is a tradition in the company that tech ...

Posted by reidme on Fri, 29 Mar 2019 06:21:30 -0700

Android Hot Repair-Nuwa Gradle Plug-in Core Source Analysis

brief introduction Nuwa is a popular open source implementation of Android hotpatch scheme, which is characterized by high success rate and simple implementation. Of course, there are many hot patch schemes, AndFix, Dexposed, Tinker and so on. The reason why we need to analyze Nuwa is that it represents a hot patch idea, through which we can ...

Posted by tmed on Thu, 28 Mar 2019 01:45:30 -0700

Learning and Use of Dropdown Refresh Framework Android-Ultra-Pull-To-Refresh

The reason for doing this is that my mentor's pre-departure 2016 plan includes the following: replace the current drop-down refresh framework PullToRefresh framework with Android-Ultra-Pull-To-Refresh framework, because the former is no longer maintained. I may be leaving now, but last year I was so busy that I didn't change the framework. I re ...

Posted by bradsteele on Wed, 27 Mar 2019 17:06:29 -0700

Detailed Use of Gradle in Android Studio

1) Basic configuration build configuration buildscript { repositories { jcenter() } dependencies { classpath 'com.android.tools.build:gradle:1.2.3' } } Android script apply plugin: 'com.android.application' Android configuration android { compileSdkVersion 22 buildToolsVersion "22.0.1" } Project structure ...

Posted by RockRunner on Wed, 27 Mar 2019 11:39:28 -0700

Detailed steps for react-native migration to android projects

Beginning with nonsense: Just returned to work after the holidays, the company has no special assignments. Having nothing to do at leisure, I inexplicably began my first blog journey in my life.. I didn't want to write what I got on my blog. First, I worry about my lack of experience and write about my fear of misleading my children. Second ...

Posted by adam119 on Sun, 24 Mar 2019 16:24:27 -0700

Green Dao 3.0 is easy to use

From: http://www.jianshu.com/p/4986100eff90 On Green Dao greenDao is a lightweight and fast ORM solution that maps objects to SQLite databases. The concept of green DAO can be seen on the official website greenDAO Green DAO Advantages 1. A streamlined Library 2. Maximizing performance 3. Minimizing memory overhead 4. Easy to use API ...

Posted by speckledapple on Sun, 24 Mar 2019 02:21:28 -0700

Android Side-Sliding Menu - Detailed Use of Sliding Menu

brief introduction Sliding Menu is an Android-side sliding menu component. It has powerful functions and simple settings. It can also set menu shadows, gradients, scrolling modes and so on. Sliding Menu is an open source Android project on github that can be used to quickly integrate Android sideslip menu effects Sliding menu can contain m ...

Posted by dayang on Sat, 23 Mar 2019 10:39:52 -0700