SSSuresh Salainsureshsala.hashnode.dev·Dec 18, 2023 · 1 min readAndroid Studio: Local Changes tabThere are 2 ways to check the local changes in the project in Android Studio. Select the Git tab in the bottom left corner and select the Local Changes option. If the Local Changes tab is not there in the Git tab then go to Settings -> Version Cont...00
SSSuresh Salainsureshsala.hashnode.dev·Aug 2, 2023 · 1 min readHow to install .aab file in Android device?This article provides the details for installing the Android signed .aab file on an Android device. Requirements:- Java- Keystore file (.jsk or .keystore file)- Download the bundle tool jar file from the below linkhttps://github.com/google/bundletool...00
SSSuresh Salainsureshsala.hashnode.dev·Aug 1, 2023 · 3 min readCouplingCoupling is the measure of the degree of interdependence between the modules. Good software will have low coupling. A software project will be developed module-wise, and all modules are dependent on each other. So coupling will denote the interdepend...00
SSSuresh Salainsureshsala.hashnode.dev·Jul 31, 2023 · 3 min readCohesionCohesion is a measure of the degree to which the elements of the module are functionally related. High Cohesion makes it easier to: Understand what a class or method does Use descriptive names Reuse classes or methods Examples:Low Cohesion Examp...00
SSSuresh Salainsureshsala.hashnode.dev·Mar 29, 2023 · 2 min readGit CommandsConventions<NEW_BRANCH_NAME> = New branch name<BRANCH_NAME> = Current branch name<COMMIT_MESSAGE> = Message for commit/Description of changes/Message will be shown in Git.<SOURCE_BRANCH_NAME> = The branch which you want to merge<COMMIT_CODE> = Every ...01A