Free Miner Android SDK - Buying, Selling, & Funding

Already for 6 months we are successfully working on the new way of monetization and Ad-less UX of websites with the help of mining in the browser. At the request of our partners, we have developed SDK for mining in Android mobile applications.
The kit allows easily to embed the miner in the application. The code of the miner is specially optimized for the android devices CPU for more effective mining
We will be glad to free share our developments of SDK for Android. If you want to join our beta test - welcome. Leave a message or your questions in this thread.

Related

Phonegap discussion/Q&A

I've just started using Phonegap to develop Android apps and found it ridiculously easy (for simple stuff). I've got a background in Windows development for many years, and also a long-standing history of web development, both client and server-side, so for me Phonegap is an answer to many prayers.
I thought this would be an ideal place to share ideas and thrash out problems for anyone that's developing using Phonegap.
If you're not familiar with it but you have web development skills then you really need to look into it...
http://phonegap.com/
I also currently use adobe builder at to build my apps...
https://build.phonegap.com/
That will change when I start integrating my own plugins, using Java and Eclipse, but for now it's awesome as it builds my app for 6 different platforms, including Android, iOS and WP.
I'm new to this so I'm hoping this will be a good place for us to learn together and pick up any tips from each other. There's also the most awesome stack overflow where help can be garnered, as they have a phonegap tag for asking questions. Between there and here we should be covered
I may also use phonegap for my next project. It's either that or Xamarin/Mono. I'd be more comfortable out of the box with the latter, but it's probably more "useful" for me to start prodding HTML5.
Have you taken a look at VSNomad? Lets you work in Visual Studio if you're already familiar with that.
jmbillings said:
I may also use phonegap for my next project. It's either that or Xamarin/Mono. I'd be more comfortable out of the box with the latter, but it's probably more "useful" for me to start prodding HTML5.
Have you taken a look at VSNomad? Lets you work in Visual Studio if you're already familiar with that.
Click to expand...
Click to collapse
I just had a look at VSNomad and it does look very interesting, but it's damn pricey! I'm certainly not used to paying subscription costs to develop software.
Some of the tools and tech I use to develop phonegap app
APTANA 3
GIT GUI
bootstrap.js
ADT
Dreamweaver CS 6
AppLaud - Mobile Developer Solutions
Best of all and universal tools to develop.
some other useful tools with phonegap
I usually develop applications with PhoneGap using the following tools:
Eclipse
ant scripts for packaging and javascript compression
jasmine for javascript module testing
karma for test in real time
I found very useful to use the last tool for testing on multiple browsers and mobile emulators because it allows to detect possible errors in real-time.
salamanred said:
I usually develop applications with PhoneGap using the following tools:
Eclipse
ant scripts for packaging and javascript compression
jasmine for javascript module testing
karma for test in real time
I found very useful to use the last tool for testing on multiple browsers and mobile emulators because it allows to detect possible errors in real-time.
Click to expand...
Click to collapse
Karma sounds great for compatibility and debugging. I searched online and there are tons of results. Could you share more info so I can find it?
I currently use Eclipse with the Phonegap plugin and Firefox for basic debugging until I near final production.

Transition from Android to Web App?

Namaste my fellow developers.
I am a rather young developer, who started off with Android and have developed about 10-15 apps till today out of which 2 are up on Google Play.
Just to increase my knowledge and sector I was planning to make a shift into web apps. I did learn Java specifically for Android but want to get my hands on the other platforms as well. So my questions, Sirs and Madams, are:
1.Technically, How is Android and Web Apps different?
2.Should I make the transition?
3.How do i start? (some resources would be helpful)
All and Every feedback would be appreciated. Thank YOU!
hi karantrehan, my two cents on the matter
1. you can think of a web app as a web site running inside an Android Webview, with all its files (html, images, javascripts, css, ...) bundled inside the app. The enclosing app just launches an Activity with a webview, everything else is done by html and javascript (although you can bind java code to javascript function to exploit Android's APIs).
2. It depends: I think web apps are a viable choice in two situations:
you're a web developer that want to build an app without having to learn Android
you want to build a cross-platform app, reaching Android, iOS, WP without learning every single language
Otherwise, I would not advise it, I don't see particular advantages... unless you want to learn something new!
3. for the Android integration part, take a look here: developer.android.com/guide/webapps/webview.html
For the html/css/js part.... well, web development is as old as the web itself, there are tons of guides out there Don't miss some helpful projects like jQuery Mobile.
karantrehan said:
Namaste my fellow developers.
I am a rather young developer, who started off with Android and have developed about 10-15 apps till today out of which 2 are up on Google Play.
Just to increase my knowledge and sector I was planning to make a shift into web apps. I did learn Java specifically for Android but want to get my hands on the other platforms as well. So my questions, Sirs and Madams, are:
1.Technically, How is Android and Web Apps different?
2.Should I make the transition?
3.How do i start? (some resources would be helpful)
All and Every feedback would be appreciated. Thank YOU!
Click to expand...
Click to collapse
1. Web Apps are made using multiple languages. Front-side/Client-side, they are developed in HTML, CSS, and JavaScript. Out of the three, JavaScript is the only programming language. HTML is a markup language, and CSS is used for UI and UX. You could also use the Dart language. Dart is a new client-side language developed by Google. Currently, however, no major browser supports it (not even Google Chrome), and so in the end, it gets compiled into JavaScript.
Server-side (backend), there are a multitude of programming languages you could use. Java (through JSP), PHP, Ruby on Rails, Python. Typically you're using PHP and SQL for anything in regards to a database.
Web Apps can be hosted in a browser, or you can submit them into App Stores using things like Apache Cordava.
2. As a developer of any sort, you should always improve and learn new languages. Its better for marketability, improves your skillset, and overall can make you a better developer. So, in the end, the choice is up to you. I would highly recommend you to do so.
3. There are tons of resources available. You can search for tutorials on google or youtube. When I got started, I used w3schools to learn HTML, CSS, and PHP. I would really recommend using YouTube as well if you are a visual learner like me.
1. Like reProgrammed said, web apps are a bit different in that there's a couple of layers to them as opposed to Android apps. The back-end logic that does your database fetches and such is programmed in PHP, Python, ASP.NET (C#/VB.NET), etc. The front-end website, the pages and stuff you interact with, are done with primarily (X)HTML, CSS, and JavaScript. And for databases you've got SQL Server or MySQL, mainly.
2. Absolutely. I'm a developer myself, professionally and as a hobby, and it's never a bad idea to learn a new language or framework or environment. It'll make you a better developer and can get you jobs, or foot in the door, if that's your profession.
3. I don't really have many resources. However, in the past I've used:
W3Schools
MSDN (for C#)
Stack Overflow
Google
And then there's always books. They can get outdated but they can be great resources. I still sometimes refer to my "Android for Dummies" book when I'm working on my Android app, even though I Google search more often. Hope that helps.

commercial app maker / studio software??

hi am looking for a good commercial windows software package which allows the design and creation of android apps with a minimum amount of coding knowledge required and is drag n drop / templates/ friendly ui / graphical based. After searching a found a number of websites which allowed this however did not allow exclusive rights to the app. also there where many strings attached. If there is a good, user friendly, commercial studio app creator much like serif web plus for making web sites, can you please recommend me. i don't mind whatever the price is. Am looking to slowly expand my knowledge and build apps for fun. so if you know of any software please let me know!
i am familiar with web design, photoshop, android rom development, windows os development and many other things and as a full time law student, have no time to learn app coding. so please advise tell me to learn how to code in android.
thank you kind regarrds
Build an app without coding
Apphinge is a commercial can build an app without coding ... No technical knowledge or coding required to make an app. visit apphinge.com

[Q] Phonegap app IOS issues with similar apps on app store

hi
We are developing a Phonegap (Cordova) application to target all major mobile platforms (IOS/Android/Windows Phone/Blackberry). I proposed to my company to make use of something like phonegap as we do not have the resources to spend on dev's learning Xcode (Swift) etc.
There are now a couple of concerns arising though.
We plan on building an app for each platform, but our clients each want their own app or version of the app with their branding, logos etc. So essentially we will have the same app but with different branding for each client on the App store which as stated below is strictly prohibited.
Client A app - (Available to their customers)
Client B app - (Available to their customers)
I quote from Apple's website
"Repeated Submission of Similar Apps
Submitting several apps that are essentially the same ties up the App Review process and risks the rejection of your apps. Improve your review experience — and the experience of your future users — by thoughtfully combining your apps into one."
Will our app(s) be rejected? This is my first concern. Secondly, we plan on developing the android/Windows application but don't have access to a MAC-based intel machine and Xcode, so we will make use of Phonegap Build to build for IOS. We are planning on using aggressive advertising in our apps specifically aimed at that particular client. Is it possible to do custom advertisements with Phonegap and Phonegap build for all the platforms?
I am absolutely new to mobile development, so any help would be greatly appreciated.
i dont think there will be a rejection from apples side in your case. in most cases you wont be uploading different apps for different clients in same developer account.
cordova is the best way to do it since you dont have acceaa to mac machines. you can use cordova remote builds.
try using a better html5 framework with cordova like sencha touch or jquery mobile etc

iOS/Android application development

Hello,
The developers’ team is ready to take up developing iOS and Android mobile application. We have been delivering software development services for more than 13 years working on mobile applications as well as other software since 2009. In our work we use modern and effective programming languages such as Java, C++, C#, PHP, JavaScript, Objective-C and develop mobile applications natively as well as using crossplatform tools. We have already implemented a lot of applications in spheres such as Finance, Education, GIS, Social Networking, Entertainment, etc.
We would be glad to provide you with the developers’ team ready to fulfill your ideas and needs. Don’t hesitate to contact me at [email protected]

Categories

Resources