918 Topics

Member Avatar for
Member Avatar for Pradeep_35

Identifying the purpose of your app is the first step in selecting the finest Mobile app development. Are you okay with the app sending you to push notifications? What are the characteristics that must be present for it to function

Member Avatar for Sheikh_9
2
364
Member Avatar for Mr.M

Hi DW, I've faced an issue with my project, it has been working these years till I think last year or the other year. When I sync it fails saying unable to resolve dependency no matter which version I try I get similar error differs with version number.

Member Avatar for rproffitt
1
47
Member Avatar for dimitrilc

## Introduction ## In Android Studio, we can run multiple tests in parallel across multiple devices using the dropdown menu. ![Screen_Shot_2022-09-26_at_3.02.02_PM.png](https://static.daniweb.com/attachments/4/a7966192c6b1c265a65010a9d1fa236d.png) Running instrumented tests this way is very convenient during development, but there is a problem with this method when your tests are run on a remote build server: * …

Member Avatar for John_387
2
583
Member Avatar for Leonidas_3

Uninstall/reinstall or update Android Studio for this case...? My Android Studio App hasn't been updated and used, for 3 years since September 2020,... on my Windows 11 Pro PC,... Any idea about my question Uninstall/reinstall or update Android Studio ...? I plan return to continue, in Android hybrid app development …

Member Avatar for Leonidas_3
0
90
Member Avatar for tarun Nagar

Dear community members, I'm exploring the development of a real estate app and would love to tap into your expertise. In your experience, which programming languages and frameworks have you found to be most effective for building robust and feature-rich real estate apps? Your insights and recommendations will be greatly …

Member Avatar for Gulshan_6
0
70
Member Avatar for tarun Nagar

**I am looking for resources for medical delivery app developers. I am particularly interested in learning about: ** * The different technologies that can be used to develop medical delivery apps. * The regulatory requirements for medical delivery apps. * The best practices for designing and developing a user-friendly medical …

Member Avatar for rproffitt
0
41
Member Avatar for Mindmade
Member Avatar for norajohn

Hello, fellow forum members, Today, I would like to discuss the numerous benefits that come with on-demand mobile app development. In recent years, the on-demand economy has gained significant traction, revolutionizing the way businesses operate and enhancing user experiences. Let's explore some of the advantages this approach offers: Convenience: One …

Member Avatar for yddevelopers
-1
42
Member Avatar for Mr.M

Hi DW, I'm having an issue on my Android studio I'm getting this error `Unable to resolve dependency for ':app@debug/compileClasspath': Could not resolve com.google.gms:play-services-measurement-api:[16.0.3].` Does anyone know how to solve this error?

Member Avatar for Mr.M
0
24
Member Avatar for Mindmade
-3
19
Member Avatar for Houssem Eddine

Hello everyone I have problem when I want to Add Project Dependency for my Palette's Components such as GridLayout, it tells me that : "This operation requires the library androidx.gridlayout:gridlayout:+. Problem: Inconsistencies in the existing project dependencies found. Version incompatibility between: - com.google.android.material:material:1.9.0@aar and: - androidx.appcompat:appcompat-resources:1.6.1@aar With the dependency: - …

0
35
Member Avatar for Mindmade

Hi Guyz, Why is Include high-grade encryption and a reliable SSL in your list of mobile app development security practices is important?

Member Avatar for rproffitt
-1
12
Member Avatar for Williams Brown

It is difficult to predict with certainty which specific types of apps will be in demand in the future, as it depends on a variety of factors. However, considering recent trends, apps for games will continue to dominate and be the most demanded apps in the future followed by education …

Member Avatar for john_378
2
167
Member Avatar for Mindmade
Member Avatar for Toro_1

Hello! I have created a project on Android studio, and i use java as langage, i want to create a biometric system with fingerprint, what i mean is that i want to use android fingerprint device to get fingerprint id and store it in MySQL with some personal informations, so …

Member Avatar for vincentlnalls
0
151
Member Avatar for Mindmade
Member Avatar for tarun Nagar

To hire an android app developer, you must consider the following steps: 1. Prepare a technical description of your project 2. Choose the most suitable model 3. Carry out technical interviews 4. Finalize the agreement and sign the contract Following these steps, you can easily hire an android app developer …

0
12
Member Avatar for borobhaisab

Hiya, I program on PC laptop mostly throughout the year. And in winter, program on my mobile phone. Nokia 2 (old timer). I got now Samsungs which are better. So thinking of programming on them too, just for fun (so to speak). I am curious to see my Samsungs Desktops …

Member Avatar for Mirhun
0
176
Member Avatar for Joshua_Jackson

A standard Android strategy includes various testing types: integration testing, system testing, operation testing and unit testing subject to the features of the tested mobile applications. Other types of tests would also be done if needed, based on the application’s features.

Member Avatar for rproffitt
0
28
Member Avatar for Ricky_13
Member Avatar for dimitrilc

## Introduction ## In a previous tutorial, we learned [how to create a notification on Android](https://www.daniweb.com/programming/mobile-development/tutorials/536756/android-native-how-to-create-a-notification#post2282507). In that tutorial, we did not have to request any permission because applications did not need permission to post notifications on Android 12 and below. It has been almost a year since the release …

1
417
Member Avatar for dimitrilc

## Introduction ## In a previous tutorial, we learned [how to set an exact alarm](https://www.daniweb.com/programming/mobile-development/tutorials/537920/android-native-how-to-launch-activity-from-an-exact-alarm). A permission called `SCHEDULE_EXACT_ALARM` was used in that tutorial. Initially, I thought that it was only a normal install-time permission, but I have recently found out that this specific permission also belongs to a rare …

1
254
Member Avatar for dimitrilc

## Introduction ## When working with ViewModels, instead of using the default, it is best practice that we inject coroutine dispatchers instead of hard-coding them. The reasoning behind this is that it is easier to switch to a testable dispatcher in tests. In this tutorial, we will learn how to …

1
842
Member Avatar for dimitrilc

## Introduction ## When working with RecyclerView, sometimes we are required to scroll the RecyclerView in code, especially after addition of a list item. In this tutorial, we will learn how to scroll to specific positions on a RecyclerView. ## Goals ## At the end of the tutorial, you would …

1
359
Member Avatar for kesavan_2
Member Avatar for Williams Brown
Member Avatar for getfontfree

I have created a new website on Google but I am having problem using it on mobile. can you help me? here is the link of website https://getfontfree.com/

Member Avatar for Dani
0
14
Member Avatar for dimitrilc

## Introduction ## Taking what we already learned from the previous tutorials about drawing custom shapes and animating along elements along a Path. In this tutorial, we will combine what we learned about animation so far to create an alternating Yin Yang symbol. To those unfamiliar with the Yin Yang …

1
85
Member Avatar for dimitrilc

This is the second part of a series. The first part can be found [here](https://www.daniweb.com/programming/mobile-development/tutorials/538948/android-native-animate-alternating-yin-yang-symbol-part-1). ## Draw The Yin ## Now that we have the Yang drawn, we will continue onto the Yin. 1. Add the Paint for the Yin into the YingYang class. We will use a *stroke* style …

1
69
Member Avatar for dimitrilc

## Animation Strategy ## Welcome to part three of the tutorial; part two can be found [here](https://www.daniweb.com/programming/mobile-development/tutorials/538947/android-native-animate-alternating-yin-yang-symbol-part-2). For this animation, I have chosen to redraw the YinYang Drawable at each frame. This means recreating the YinYang object with different constructor parameters on every frame (the current YinYang implementation has a …

1
63

The End.