Unable to publish Smartface 4.4.04 project - smartface.io

I am using jdk1.8.0_05 and unable to publish the project to Android. I am getting message 'Need 1.7 jdk'. Should I downgrade my jdk?

Also don't forget to check (if you've already set the path to the jdk 1.7) if your path go into the "bin" folder like "jdk1.7blabla/bin" and not only "jdk1.7blabla".
I solved the same problem with this solution :)

You need to use jdk1.7.0_71 in order to get Android publish with the existing setup of Smartface which is 4.4.0.
Also you should check this document about configuration :
http://www.smartface.io/developer/guides/get-started/configuration/#conf-java

Related

"Unable to create project" error in Unity hub 3.1.2

I've been having some issues with Unity so I installed the latest hub but now I can't create any new projects and I don't know what to do. Does anyone know how I can solve this?
Here is what happens when I try to create a new project
Check the version on the top, this happened to me when I uninstalled the editor and installed a previous version. There's a drop down menu where you can select the correct editor version.
This is a path issue. All paths should be select.
enter image description here
In macos it is for permissions, I solved it by following these two tutorials
Enable root user
https://www.maketecheasier.com/enable-root-user-mac/
Execute Unity Hub as root user
https://es.wikihow.com/abrir-aplicaciones-con-privilegios-de-ra%C3%ADz-en-una-Mac#:~:text=Es%20posible%20abrir%20cualquier%20aplicaci%C3%B3n,a%20la%20aplicaci%C3%B3n%20o%20computadora.
When the editor is installed in a non-C drive, the editor has no right to create objects in any path
Unistall Unity Editor and install it in C:*
https://forum.unity.com/threads/if-unity-hub-didnt-be-installed-in-c-you-cannot-create-project.1375554/
report bug

Activity 01] Unable to resolve target 'Google Inc.:Google APIs:5'

problem while it is installed at sdk manager
i installed project and it shows error like this plz help me out of thisActivity 01] Unable to resolve target 'Google Inc.:Google APIs:5'
You might have to clean and build the project again so that eclipse/ADT will generate a new R.java file.
Before the clean, you might want to also use the Android Context menu when you right click your project and select 'Fix Project Properties'.
After install crashlytics I had a path Google Inc./Google APIs/17 in project.properties. After change it to Google Inc.:Google APIs:17 the app worked.

eclipse plugin missing in hadoop-1.2.1

I am trying to install hadoop on Windows. Following all the steps provided on http://v-lad.org/Tutorials/Hadoop/13.5%20-%20copy%20hadoop%20plugin.html
I am facing a problem installing the hadoop-plugin. The hadoop version downloaded from apache.org(hadoop-1.2.1.tar.gz) does not contain the 'eclipse-plugin' folder in 'hadoop-1.2.1/contrib/'
Is there any other way that I can get this done.
Thanks
The folder might be src/contrib/eclips-plugin (not just contrib/eclips-plugin)
Try taking it from http://svn.apache.org/repos/asf/hadoop/common/tags/release-1.2.1/src/contrib/eclipse-plugin/
Use http://svn.apache.org/repos/asf/hadoop/common/tags/ for other releases

phonegap cordova unable to locate blackberry-nativepackager

I am trying to create a blackberry10 project with phonegap cordova command line tool. I am following through the phonegap document (http://cordova.apache.org/docs/en/2.9.0/guide_cli_index.md.html#The%20Cordova%20Command-line%20Interface) but keep running into the same problem.
When I run "cordova platform add blackberry10" in the terminal, it returns [Error: blackberry-nativepackager cannot be found on the path. Aborting]
Does anyone know why and what am I missing? Why is it trying to locate the blackberry-nativepackager, instead of the webwork sdk?
All I want to do its just loading up an external url in bb10. Any better suggestion? Does anyone has any good tutorial/walkthrough on how to create a blackberry10 project?
I'm pretty sure the nativepackager thing is needed to create a package, even with WebWorks. You'll find it in $BBNDK/host_10_x_xx_xxxx/linux/x86/usr/bin/blackberry-nativepackager (adapt to your OS). You'll need to add this folder to your path. Doing this depends on your OS.
The easiest way to do this is to run the bbndk-env script, located in your NDK root directory.
Here's some updated documentation to align with Cordova 3.0. It will cover all the steps needed (including the NDK setup, which seems to be currently missing in your environment).
http://cordova.apache.org/docs/en/3.0.0/guide_platforms_blackberry10_index.md.html#BlackBerry%2010%20Platform%20Guide

Library not found for -lXXX

If your trying to run an iphone project downloaded from the internet in Xcode and you encounter "Library not found for -lxxx", where -xxx is some third party library where would you look to set the library path? I am not sure where this is setup, in the SCM->library path is blank and everything else seems to match the configuration window for other working projects
When I look at the build log i see the following in the linker output:
-ObjC -ljson
How can i configure the project to not try to link in that library at build time?
if using cocoapods and getting this error, try updating the cococapods$ sudo gem update cocoapods Then update the pod for the project$ pod updateI don't know the exact reason but I think it was because the old version didn't set the libraries properly for the new XCode.Hope this helps.
Within the build tab of project settings there is a field for linker options, I removed the -ljson from here to solve the issue.
Either you need to add that library to add your project or you can remove from the project and delete all the reference.
This may help you, just click on the library and change the 'required' option.
This might be helpful in some cases:
Xcode > Preferences > Locations > Locations > Advanced, select Unique.
I was facing a similar issue and chaging to "unique" from "legacy" solved the problem