sdk

Android SDK requires android developer toolkit version 17.0.0 or above

送分小仙女□ 提交于 2019-12-05 09:19:06
问题 I am having this weird issue when I was trying to merge my projects from eclipse to netbeans. Now when trying to rerun eclipse I get this error "Android SDK requires android developer toolkit version 17.0.0 or above" What I have tried to do to resolve the issue was try and update the SDK and toolkit inside of it. So far everything is updated and now I am clueless. 回答1: Run software updates in Eclipse (Help > Check for Updates) and update the ADT. 回答2: Go to your eclipse, click on Help ->

Unity3D AR技术 vuforia SDK

被刻印的时光 ゝ 提交于 2019-12-05 09:17:41
原创文章如需转载请注明:转载自 脱莫柔Unity3D学习之旅 QQ群:【119706192】 本文链接地址: Unity3D AR技术 vuforia SDK 公司新项目要使用ar技术(增强现实),网上搜了些相关资料发现使用最多的就是高通的vuforiaSDK。 高通 vuforia 官网 ( https://developer.vuforia.com )目前最新版本是2.0 (windows平台unity-2.0版本经尝试多次无法安装, 其实是下载不完整引起的,后来换IE浏览器下载下来的就能用了,多换几种下载方式试试,囧的不明所以。 ) 另外网上教材全是英文,而且全是英文,也没有告知如果设置自己的识别图( ImageTarget )。 中文网上教程少的可怜,一个人写的帖子被各种转载,人家原创写“下篇继续”,他们抄的也“下篇继续”,人家原创真的就在下篇继续了,抄袭的就果断太监了~ 例子1: (本例子以window平台下unity - android 1.5版本为例) 1.下载、安装sdk。安装完成后会在安装目录获得一些 unitypackage 资源包. 2.新建一个unity项目,导入一下两个资源包: vuforia-android-1-5-10.unitypackage vuforia-imagetargets-android-1-5-10.unitypackage 3

Free JPEG2000 Library or SDK for de-compression [closed]

百般思念 提交于 2019-12-05 07:27:00
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 7 years ago . I have written code to compress and decompress image files using a proprietary SDK for transmission from an aircraft via satellite. Unfortunately a license must be purchased for decompression as well as compression. Until now my

用ADB 抓取和存储APP日志方法

喜你入骨 提交于 2019-12-05 06:50:40
前置条件:电脑已经安装好adb (一) 进入adb目录下连接手机,检测出手机 CD 到SDK的platform-tools (二)adb logcat-c 清除日志 (三)adb logcat –v time >日志储层路径 当前在D盘SDK的platform-tools 下 .\\logcat.log 在该目录的下一目录下 (四)到指定目录查看日志: END~~~ 来源: https://www.cnblogs.com/ashucm/p/11911590.html

Android Facebook SDK - How To Query Facebook Notifications

本秂侑毒 提交于 2019-12-05 05:55:29
I have the Facebook SDK for Android working in my app. I can't seem to find any examples or documentation on how to use the SDK code to get Notifications. I have the permission "manage_notifications" set and I am assuming that I need to use the .request() method, but the graphPath parameter eludes me. Does anyone have an example of how to get the Facebook notifications using the Facebook SDK for Android? While the other answers are helpfull, what I was looking for was an example of the Android Code. I have figured it out though and have posted it here. The code below gets the logged in

why “cocos compile -p android” gives “The android command is no longer available.” error

这一生的挚爱 提交于 2019-12-05 05:52:32
I am working on a cocos2d-x project. i always compile android project using cocos command cocos compile -p android --android-studio -m debug . But now this command returning an error. The android command is no longer available. For manual SDK and AVD management, please use Android Studio. For command-line tools, use tools/bin/sdkmanager and tools/bin/avdmanager Error running command, return code: 1. Error running command, return code: 14. i can't figure out the problem. why this is giving error? what did i changed that caused this issue? I am working on Mac OS sierra, Cocos2d-x 3.14.1, Android

How to Display data from SQlite into Table views to iPhone app

走远了吗. 提交于 2019-12-05 05:38:56
I'm working on an iPhone project in Xcode 4.3 with SQlite3, the connection between the SQlite and Xcode is done, now I want to display my data into a table views (three views) and its read only! so I have the main table view, select raw --> take to 2nd view and load other data from the DB select raw --> take to the details view to display long text and image! Any help appreciated. AppDelegate.h #import "AppDelegate.h" #import "MasterViewController.h" @implementation AppDelegate @synthesize window = _window; @synthesize navigationController = _navigationController; - (void)dealloc { [_window

Android - microsoft office viewer in my app

牧云@^-^@ 提交于 2019-12-05 05:36:43
What I have / tried: I am developing an android application. In which I have to add the viewer for the microsoft office documents( doc, docx, ppt, pptx, xls, xlsx ) to the users. So I have searched in the internet. I got some reference about the apachi POI and doc4j for android. So I tried to implement that inside my app. But I got lot of issues and also not getting any API references for that. So I have posted the question in the stackoverflow . But I didn't get any solutions for that. So I am deciding to add any other third part office viewer SDKs inside my app to view the microsoft-office

Load data from csv file (iphone SDk)

穿精又带淫゛_ 提交于 2019-12-05 05:20:26
问题 Does anyone know how to load data from csv file? For the code example, CPTestAppScatterPlotController.m that I downloaded from core-plot Google website, a line graph can be plotted based on randomly generated initial data x, y. // Add some initial data SMutableArray *contentArray = [NSMutableArray arrayWithCapacity:100]; NSUInteger i; for ( i = 0; i < 60; i++ ) { id x = [NSNumber numberWithFloat:1+i*0.05]; id y = [NSNumber numberWithFloat:1.2*rand()/(float)RAND_MAX + 1.2]; [contentArray