随笔分类 -  android

1 2 下一页
android rom开发
摘要:How to Build Android ROMs on Ubuntu 16.04https://www.digitalocean.com/community/tutorials/how-to-build-android-roms-on-ubuntu-16-04 How to build your 阅读全文
posted @ 2018-04-25 12:54 袁晓平 阅读(458) 评论(0) 推荐(0)
win10下网狐荣耀手机端android app编译
摘要:基于荣耀版(2017.5.21)12 款游戏..7z这款游戏,网上有下载的 1.解压后进入 cd shoujiduan 2.将client/base复制到client/ciphercode/下,也就是client/ciphercode/base 3.frameworks\cocos2d-x\coco 阅读全文
posted @ 2017-12-03 17:24 袁晓平 阅读(2477) 评论(1) 推荐(0)
安卓APP动态调试-IDA实用攻略
摘要:0x00 前言 0x00 前言 随着智能手机的普及,移动APP已经贯穿到人们生活的各个领域。越来越多的人甚至已经对这些APP应用产生了依赖,包括手机QQ、游戏、导航地图、微博、微信、手机支付等等,尤其2015年春节期间各大厂商推出的抢红包活动,一时让移动支付应用变得异常火热。 然后移动安全问题接憧而 阅读全文
posted @ 2017-11-04 23:34 袁晓平 阅读(1590) 评论(0) 推荐(0)
[Error: Failed to find 'ANDROID_HOME' environment variable. Try setting setting it manually
摘要:7down voteaccepted I don't think its necessary to add everything into path.Just add the JAVA_HOME , ANDROID_HOME and ANT_HOME to path and point out th 阅读全文
posted @ 2017-06-14 16:16 袁晓平 阅读(1883) 评论(0) 推荐(0)
Calling a Java Method from Native Code
摘要:http://journals.ecs.soton.ac.uk/java/tutorial/native1.1/implementing/method.html Calling Java Methods This section illustrates how you can call Java m 阅读全文
posted @ 2017-06-05 22:17 袁晓平 阅读(369) 评论(0) 推荐(0)
javah 错误: 无法访问android.app.Activity问题解决
摘要:cd /Users/musictom/Documents/source/ky/app/build/intermediates/classes/debug javah -jni -classpath /Users/musictom/Library/Android/sdk/platforms/andro 阅读全文
posted @ 2017-06-03 17:47 袁晓平 阅读(441) 评论(0) 推荐(0)
android cannot locate symbol 'sigemptyset'问题解决
摘要:设备是android 4.1的平板电脑,支持armeabi-v7a和mips,为了能用上poco c++ lib,用cmake编译了poco mips架构的lib,但在android studio里引用运行时就报 cannot locate symbol 'sigemptyset' google了下 阅读全文
posted @ 2017-06-03 11:48 袁晓平 阅读(1258) 评论(0) 推荐(0)
Building Boost for Android with error “cannot find -lrt”
摘要:编辑tools/build/src/tools/gcc.jam rule setup-threading ( targets * : sources * : properties * ){ local threading = [ feature.get-values threading : $(pr 阅读全文
posted @ 2017-05-07 11:43 袁晓平 阅读(981) 评论(0) 推荐(0)
how-to-build-c-static-libraries-boost
摘要:http://tungchingkai.blogspot.jp/2016/11/how-to-build-c-static-libraries-boost.html How to build C++ static libraries (boost and QuantLib) for Android 阅读全文
posted @ 2017-04-27 13:43 袁晓平 阅读(923) 评论(0) 推荐(0)
What you should know about .so files
摘要:In its early days, the Android OS was pretty much supporting only one CPU architecture: ARMv5.Do you know how many it does support now? … 7! Seven dis 阅读全文
posted @ 2017-04-16 22:35 袁晓平 阅读(294) 评论(0) 推荐(0)
android开发-c++代码调用so库
摘要:Android项目的CMakeLists.txt代码如下,so文件放在项目的$Project/app/src/main/jniLibs/$arch下,$arch替换为arm64-v8a armv7a等 cmake_minimum_required(VERSION 3.4.1)set(ARCH arc 阅读全文
posted @ 2017-04-16 20:42 袁晓平 阅读(4199) 评论(0) 推荐(0)
为android编译libsocket的脚本
摘要:#!/bin/bash U32=0 #编译64位arm时 U32=0 编译32位arm时 U32=1 其他参数不需要变动 TARGET=android-24 HOST=darwin-x86_64 TOOL=aarch64-linux-android #arm-linux-androideabi aa 阅读全文
posted @ 2017-04-09 16:08 袁晓平 阅读(585) 评论(0) 推荐(0)
android make-standalone-toolchain.sh 使用说明
摘要:#$ANDROID_NDK/build/tools/make-standalone-toolchain.sh --platform=android-24 --install-dir=./android-toolchain --ndk-dir=/Users/musictom/Library/Andro 阅读全文
posted @ 2017-03-31 23:05 袁晓平 阅读(1952) 评论(0) 推荐(0)
Cross-compilation using Clang
摘要:Introduction This document will guide you in choosing the right Clang options for cross-compiling your code to a different architecture. It assumes yo 阅读全文
posted @ 2017-03-27 12:03 袁晓平 阅读(514) 评论(0) 推荐(0)
cmake编译android平台的libPoco
摘要:1、下载源代码,解压到POCO-1.7.8-ALL 2、从$ANDROID_NDK\cmake下复制android.toolchain.cmake AndroidNdkGdb.cmake AndroidNdkModules.cmake至POCO-1.7.8-ALL\cmake\下 3、vim POC 阅读全文
posted @ 2017-03-26 18:25 袁晓平 阅读(729) 评论(0) 推荐(0)
使用CMake编译跨平台静态库
摘要:在开始介绍如何使用CMake编译跨平台的静态库之前,先讲讲我在没有使用CMake之前所趟过的坑。因为很多开源的程序,比如png,都是自带编译脚本的。我们可以使用下列脚本来进行编译: . / configure -- prefix = / xxx / xx -- enable - static = Y 阅读全文
posted @ 2017-03-25 19:58 袁晓平 阅读(4024) 评论(0) 推荐(1)
国产手机插入mac os 系统中无法被识别的解决方法
摘要:一些国产手机插入mac os 系统中无法被识别,在命令行输入 system_profiler SPUSBDataType在, 然后将魅蓝note的vendor id 添加至 ~/.android/adb_usb.ini文件中,然后依次执行adb kill-server adb start-serve 阅读全文
posted @ 2016-09-26 11:49 袁晓平 阅读(805) 评论(0) 推荐(0)
javah生成jni头文件时报错 Error: cannot access android.support...
摘要:javah生成jni头文件时报错: Error: cannot access android.support.v7.app.AppCompatActivity class file for android.support.v7.app.AppCompatActivity not found Erro 阅读全文
posted @ 2016-07-02 18:21 袁晓平 阅读(2346) 评论(0) 推荐(0)
android studio下生成jni头文件
摘要:cd app/src/main javah -d jni -classpath ../../build/intermediates/classes/debug net.sourceforge.lame.Lame 头文件 net_sourceforge_lame_Lame.h 会放在app/src/m 阅读全文
posted @ 2016-07-02 17:06 袁晓平 阅读(1654) 评论(0) 推荐(0)
ndk编译android的lame库
摘要:1、lame c库: https://github.com/intervigilium/liblame 下载后解压,进入目录,terminal里运行ndk-build即可 2、lame android库 https://github.com/intervigilium/Lame4Android 需要 阅读全文
posted @ 2016-07-01 18:43 袁晓平 阅读(4055) 评论(0) 推荐(0)

1 2 下一页