Starting an Android project [closed] - java

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I have recently started to enjoy Android development and I have some projects that I want to develop.
I usually develop with IntelliJ and my recent sdk target was 21. I noticed there are several things that I have missed such as Maven, Gradle, maybe using a lower sdk target and Asynctasks.
So my question is how to I start with a good Android project? How do I use Graddle or Maven? and what sdk target should be the minimum in 2015 according to you guys?
Basically what should I do or think about when I'm developing in Android?

I think you are not compel to use Gradle as newbie because it's the build system of android studio ,and it will generated automatically. so you have no work to do with it directly as a beginner.
and for what min sdk , for now u can set it as ICS4.0 (API 14) because in this case your app will targeting more than ~ 87% of users.
-my opinion is to leave this side things, and focus on main programing stuff, and good luck.

Related

How to configure ReportPortal for Android Studio? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 1 year ago.
Improve this question
I'm using Android studio and gradle to build apk and perform regression testing. I'm supposed to explore ways of integrating ReportPortal to the android project for generating reports. However I didn't find Android Platform listed in https://reportportal.io/installation
I'm open to suggestions about trying out other reporting tools for android studio as well.
Report Portal supports Android testing for JUnit 5 only. You can find corresponding agent and installation instructions in 'agent-android' project: https://github.com/reportportal/agent-android
But I personally recommend to start from our examples:
Kotlin: https://github.com/reportportal/android-kotlin-example
Java: https://github.com/reportportal/android-java-example

Corba with Android Studio [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 1 year ago.
Improve this question
I'm trying to start a new project in android studio Which requires CORBA (Common Object Request Broker Architecture) standard, so I searched about it, I found this library, and I added it in my project, but it seems nothing change, I think I should write something in the dependencies before !! and I can't found any documentation about dependencies in android studio of CORBA, so any help please !
CORBA support is no longer part of the standard Java platform (deprecated in Java 9, and removed in Java 11). CORBA has never been part of the standard Android platform.
The following leads may help:
Open source Java CORBA ORB on Android? talks about trying to get JacORB to work on Android.
OIS' ORBExpress (commercial) product is available for Android: product link.
TAO and TAOX11 have been ported to Android in the past so both would be worth the try

How to remotely downgrade apk on device? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
Might be a beginner question, i'm new to android studio.
I need to write a simple .apk on java which will load a react web-app.
If the new version of the app crashes, I'd like to downgrade the .apk. I assume by downloading the older version and installing it.
How could I structure the code the proper way to do that?
I'm not asking for the whole source code, just some tips of code structuring.
This ap is not for the market but for internal use.
So the OS version is fixed, 7.1.
Thanks.
You need to set the apk version code correctly, most likely in your root build.gradle file.
If version code 1 is working and installed on your users devices, then apk with version code 2 is installed but crashes, you have two options:
Fix changes and submit to users as new apk version code 3 (they can
update to this version)
Have user uninstall app, and re-install previous apk with version code 1.

What is the best IDE for java android development [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 9 years ago.
Improve this question
What is the best IDE for java development on mac OSX?
Ive been using Sublime text for all of my web based programming and i´m wondering wich IDE is the best one to use while programming apps for android.
I prefer Android Studio. Its a new Android development environment based on IntelliJ IDEA. It is Similar to Eclipse with the ADT Plugin.
Android Studio is the Google's recommended IDE for Android development.
Android Studio is the official IDE for Android application
development, based on IntelliJ IDEA.
See here: http://developer.android.com/tools/studio/index.html
It used to be the Eclipse based Android Development Tools (ADT).
IntelliJ is now the official IDE for android development.
http://blog.jetbrains.com/blog/2013/05/15/intellij-idea-is-the-base-for-android-studio-the-new-ide-for-android-developers/
http://developer.android.com/tools/workflow/index.html
You can use http://netbeans.org/ or http://www.eclipse.org/. Both work on a Mac.
I prefer Eclipse over Netbeans.

What does one needs to know beforehand when developing an Android app..? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
I want to build an app in android. I have a sound knowledge of C/C++, but I don't know Java as of yet..!
Do I need to learn java to develop an app in android ?? What does I need to do to develop an app ?
I explored this link http://developer.android.com/training/index.html, but I didn't understand what actually do I need to do to develop an app.
Please help..!
Before starting Android development, you should know these:
1. Basic OOP Concepts.
2. Basic Java.
3. Basic XML.
If you already know these things, then just download JDK (According to your OS) and a suitable IDE (like Eclipse, Android Studio, etc)
And explore the Android Development Portal.
P.S: If you are finding Android Developer's Portal difficult to understand then, you can jump to some nice tutorials and start developing. Here is the list of some nice Android Tuts:
Vogella's Blog
Tutorials Point
Core Servelets
XDA Forum
YES... You'll need to have basic knowledge of XML and Java. And once you are clear with Object Oriented programming with Java, you can start Android Application Development.

Categories