How can I duplicate the app for other uses? [closed] - android

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I am currently developing an Android app for my company's products.
For a forthcoming meeting, I need to create a demonstration version with added functionality to existing applications. I want to keep both applications on my smartphone because I need to compare the existing application with the demo version in the meeting.
I noticed that simply duplicating the project does not create two applications on the smartphone.
Please tell me what I need to change in my cloned project to have two applications on my smartphone.

change in package name does the magic. or you can also use the android flavours
go here

change the package name of the app is what you need since your phone uses that to identify the app on your phone.

Flavors is the best solution in my opinion.

Related

How can I generate screenshots via script? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
Is it possible to generate Screenshots for Android via a script?
The problem is: I have an app with 8 languages and I need to create new localized screenshots. Is there a tool to run it once for one language and then to regenerate the ecreenshots for the other languages?
You can use fastlane to generate the screenshot using espresso test.
https://docs.fastlane.tools/getting-started/android/screenshots/
You can use a Macro recorder for android, there's plenty of apps out there that can automate things.
Just record the actions for one language and play them again after selecting other languages.
Example apps:
MacroDroid
Automate

Development of android application in TEAM [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
In my company we have started development in android application.
Our problem is there are multiple developers for same application and usually need to work on same files so it is really difficult to integrate work each one of us does. Also we are looking for versioning system also .
For php development we used VSS where on one file only developer can work which was fine but unable to use it for android since we moved to ubuntu and everyone is having their own eclipse setup.
Please suggest solution.
Thanks in advance.
So you are looking for a versionning control system. I recommend to use GIT, you can host the remote on github (as it's free for public repository), on bitbucket (for 5 users private repository) or on your own server with GitLab

Android black box testing tool [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I am searching for a tool/software for black box testing of android apps. I researched for some of them-Robotium, Calabash. But these tools require access to the source codes.
Also the tool should be free and opensource for use.
The Android SDK itself offers:
the Test Monkey
monkeyrunner
UIAutomator
You can also use Calabash-Android. It does not need access to source code and you can use it with a signed .apk file. You would only need to know the id of the UI elements if you want to manipulate them.

Create an Android app on ios (Apple) platform [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
This might sound like a duplicate question but trust me its not.
I have an Android app. It contains WebView to display webpages. Now I am planning to go live with the app on ios too. Now having two different codes and maintaining them is a difficult task.
Is there a way I can develop app in both the platforms with minimum maintenance issues. With minimum maintenance I mean more reusable code that can be use on both the platforms.
I have heard that it can be done using Chromium Project but am unable to find supporting docs for the same on internet.
Any suggestions?? or reference materials??
For what I know there is no way you could use your Java code and the XML files (including your WebView) in IOS application. the language/platform are different.
What you could do is to develop a web application that looks as a mobile application for example using JQueryMobile and the export it using the already suggested PhoneGap framework to any platform you would like.
You should try one of the several frameworks out there, being PhoneGap (http://phonegap.com) an interesting option.

Already available Test cases for Android [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
Is there any open source test cases codes available for android junit. Like, test cases for android media player, content providers etc? I have searched through Google and cannot find related links. I'm testing using my test cases now but I want to know whether test cases are already available. Planning to reuse those as well.
If you want the platform's unit tests or the CTS (Compatibility Test Suite), download android source code from AOSP, they are included. Unless you are trying to modify the platform though, those won't be to useful. No one can really create reusable tests for an app you are writing.

Categories

Resources