Get Full Version of My Own Windows App - windows-runtime

Is there a way for me to install the full version of my own windows app from the windows store without paying for it?

Nope, there are no store codes or anything like that. You will have to just side load the app.

Related

Win 10 UWP App: Unable to upload app package to Windows Store

I am trying to deploy my windows 10 uwp app to the windows store. I got a validated developer account and everything set up. My app packages have been built and passed all tests of the testing kit. Now I am trying to perform the last step: uploading to the store.
The problem is, that the "Upload App Packages..." is greyed out! I tryed to clean the project, selected the project to no avail.
Has anyone got an idea what the problem might be or how to further debug it? As there is not error message I am not certain what is wrong in the first place...
Thank you!
According to the documentation, this option merely opens the Dev center dashboard. Save yourself the trouble and open it directly in your web browser: https://dev.windows.com
To be honest, for some reason I don't even have this option in my Visual Studio (maybe it was removed in VS 2015?). I've always generated the packages from VS then uploaded them with the web browser, without any trouble.
Goto in Release Configuration and Check .net native tool chain and optimize code then create app package again (Don't forget to associate app to store first)

ZeroMQ on Windows Phone 8.1?

I've been developing an app for Windows Phone 8.1 and i wanted to use ZeroMQ for the communication with the server. I've used ZMQ before and it has always worked after some trying but i just coulnd't get it to work with WP8.1. I already tried to use NetMQ but i get the error "the package does not contain any assembly references or content files that are compatible with that framework" when trying to install it via NuGet, the same Problem with clrzmq4 and Castle.ZMQ Is there any possibility out there to get ZeroMQ running on WP8.1? I'm thankful for your help.
According to this thread, ZeroMQ is not compatible with Windows Phone, since this doesn't support the .NET sockets library.
I guess you'll have to use an alternative or build your own then...

Windows phone 8.1 app connect with a database

I'm totally new to the windows phone 8.1 app development.
I'm trying to develop a simple app with a database using visual studio 2013. It is not a silverlight app.
my app just have a text field and a button.And i have a MySQL database in a local server(WAMP).
I need to get a input from the text field and store it in the database.
First thing that I want to know is it possible to do?
If it is possible I would be very grateful if you could provide a step by step guide or a link where i can learn about this.
If it is not possible what are the other ways that I can try to store my input in a database?
Local storage
I'm guessing you're looking for a way to store structured data locally on the phone. AFAIK, MySQL is not supported on Windows Phone (MySQL is big, runs as a server, and it wouldn't be possible or practical to "install" it onto a phone). Instead what Microsoft endorses is to use SQLite. You'll first need to download the SQLite library as a Visual Studio extension. Then you'll need to install something like SQLitePCL (from NuGet) which essentially wraps the native SQLite library so that it is accessible from .NET languages. Make sure you add both references to your project. SQLite stores a database as a file that you can put in the local storage for your app.
Remote storage
I'm not sure if it's directly possible to connect to a remove MySQL server from a WP app. Usually you'd access a remote database through a webserver that exposes an API for you to use (e.g. a REST API). You can then send data to the webserver via a HTTP POST request, and then your webserver will store the data in the database. This is a big topic, and involves knowledge of server-side programming such as ASP.NET, Ruby on Rails, Django, PHP, etc. This topic is too broad for me to give you specifics on how to do this. See this answer.

Building Intel XDK with SQLite

This might be a often repeated question. I am a newcomer to the world of mobile and programming in general. I am trying to build an app that uses the native database capabilities within android (sqlite) with Intel XDK (HTML5) as the rendering framework. I don't want it to a web based app, but a complete on the device app.
Can i code server side on XDK (server side code and database connections)
If not what should be my way of creating the server side component - build it seperately and somehow package it?
thanks in advance!
Yes, As per my knowledge Intel XDK is just your front end, to make a communication with your Master DB (MySQL, MsSQL, etc..) you need to have server side language. You can make use of PHP and it is a light weight server side scripting language, you can run it on XAMPP server.
Here is useful link.
To make connection with local (device) DB you don't need server side language and server also. Intel XDK itself providing feature to build the app for android (.apk) and IOS (.ipa) format.
So far I gone through and got, Intel XDK is providing list of four local database connectivity in client end. Which are
Local Storage
Web SQL Storage
Session Storage
Indexed DB
For more detail refer this link.
I'm not sure about Intel XDK with SQLite.
Yes,
You can work with SQLite in phone gap application.Please use the link to the Intel XDK third party plugin. Before that please download the project dependency jar file from GitHub and create the directory with cordova plugin SQLite name and place the file in it, include the jar file. Then try to add the plugin using URL.By this you can easily work with the SQLite in phone gap.
Also you can work with the server-side storage using Phone gap application. please see the link for sample.
Hope all helpful

Sencha Touch Documentation Live Preview

I've just installed Aptana Studio3 with senchatouch 2.
I would like to use the documentation which is installed with the Sencha sdk, everything seems displayed fine but I have no way to get Live Preview in the example. When I go on line on the sencha site it's ok.
I'm under Windows 7 64 bits with last version of Chrome.
Would somebody got similar problem?
You cannot directly run the application. You need to host it on your own local web server, I use Apache Tomcat. Copy the entire downloaded Sencha Touch SDK. Start server and hit the url.
http://{your ip}:{port}/AppServerName/sencha-touch-2.0.1.1/examples/kiva/index.html
This should work.