Posts

πŸ”’ How to Obfuscate an iOS Swift Project Using SwiftShield

Introduction If you're developing an iOS app, you might want to protect your Swift code from reverse engineering. SwiftShield is a tool that helps obfuscate your code by renaming symbols like class names, functions, and properties. In this guide, we'll walk through how to install SwiftShield, use it correctly, and troubleshoot common issues . 1. Installing SwiftShield First, install SwiftShield using Homebrew : brew install rockbruno/tap/swiftshield https://github.com/rockbruno/swiftshield To check if the installation is successful, run: swiftshield --help If you see the list of available commands, SwiftShield is installed correctly. 2. Checking SwiftShield Version To verify the installed version, run: swiftshield version If this command works, you’re ready to move on. 3. Running SwiftShield for Obfuscation Now, navigate to your Xcode project directory in the terminal and run: swiftshield obfuscate --project-file DemoApp.xcodeproj --scheme DemoApp πŸ’‘ Repl...

πŸ“± Google Play's App Integrity API implementing for offline Android mobile app

If your Android app is offline and doesn't have a backend, you can still use Google Play Integrity API to check whether the app is installed from the Play Store and running on a genuine device. However, since there's no server to verify the integrity token, you will only be able to check basic integrity locally. βœ… Steps to Use Play Integrity API Without a Backend (Offline Mode) 1️⃣ Enable Play Integrity API in Google Play Console Go to Google Play Console . Select your app β†’ Navigate to Setup β†’ App Integrity . Enable the Play Integrity API . Save the License Key (you won’t need it for offline checks, but it's useful for future reference). 2️⃣ Add Dependencies In your app-level build.gradle , add the Play Integrity dependency: dependencies { implementation 'com.google.android.play:integrity:1.3.0' } Sync the project after adding the dependency. 3️⃣ Implement Play Integrity API Locally in Android App Since you don’t have a backend, you can directly verify the...

πŸ“Œ Android Documentation Plugins: The Best Way to Document Your Code

Image
πŸ“– Introduction Writing good documentation is essential for maintaining and scaling Android projects. Whether you are working solo or in a team, having well-structured documentation helps developers understand the project, onboard new team members, and avoid confusion. In this blog post, we will explore Dokka , the officially recommended documentation tool for Kotlin-based Android apps . We will also briefly discuss other options and compare their features. πŸ”₯ What is Dokka? Dokka is an official documentation tool developed by JetBrains for generating API documentation from Kotlin and Java projects. It works similarly to Javadoc but is optimized for Kotlin. βœ… Key Features of Dokka: βœ”οΈ Generates HTML, Markdown, and Javadoc-style documentation βœ”οΈ Supports KDoc (Kotlin's built-in documentation format) βœ”οΈ Integrates with Gradle and Version Catalogs βœ”οΈ Works with both Kotlin and Java code in Android projects βœ”οΈ Supports publishing documentation to GitHub Pages, ReadTheDocs, etc...

πŸ“œ Angular documentation tool of CompoDoc

Image
The @compodoc/compodoc dependency is a documentation tool for Angular applications. It generates detailed static documentation for your Angular project based on its TypeScript code, including: πŸ“Œ Key Features of @compodoc/compodoc Generates Documentation πŸ“– Extracts comments from your TypeScript files and creates structured documentation. Supports JSDoc-style comments ( /** ... */ ). Provides a Web-Based UI 🎨 The generated documentation includes an interactive UI with search functionality. Supports Angular-Specific Concepts πŸ› οΈ Components, Services, Modules, Directives, Pipes, Interfaces, etc. Includes Graphs & Diagrams πŸ“Š Displays project structure using dependency graphs. Supports Markdown Files πŸ“ You can add README.md , changelog.md , and other Markdown files to the docs. πŸ“Œ How to Use @compodoc/compodoc ? βœ… Install It npm install --save-dev @compodoc/compodoc βœ… Generate Documentation Run the following command to gener...

πŸ“¨ "SEND_SMS" or Intent.ACTION_SENDTO Permission Not Allowed in App - Android OS 15

 In Android 15 (API level 34) , the SEND_SMS permission is restricted for most apps. This change is part of Google's security enhancements to prevent misuse and protect user privacy. πŸ”Ž Why You See This Error Restricted Permissions : Starting from Android 15, only default SMS apps or apps granted special carrier privileges can request the SEND_SMS permission. Non-Default Apps : If your app is not the system's default SMS app, it cannot send SMS using the SmsManager or Intent.ACTION_SENDTO . βœ… Solutions and Workarounds Here are a few options depending on your app's needs: 1. Check if Your App is the Default SMS App If your app is a messaging app, request users to set it as the default SMS app using this intent: Intent intent = new Intent (Telephony.Sms.Intents.ACTION_CHANGE_DEFAULT); intent.putExtra(Telephony.Sms.Intents.EXTRA_PACKAGE_NAME, getPackageName()); startActivity(intent); 2. Use SMS Verification API (For OTPs) If you're sending S...

πŸ› οΈ How to remove unwanted or unused plugins from Angular or node project?

 Here’s a simple approach to find and remove unused dependencies in your Ionic 3 & Angular 5 app: Steps to Remove Unused Dependencies 1. Identify Unused Dependencies Use the depcheck tool to check which dependencies are unused. Install depcheck globally npm install -g depcheck Run depcheck in your project root depcheck It will list: Unused dependencies (can be removed) Missing dependencies (need to be installed) 2. Remove Unused Dependencies Once identified, uninstall them: npm uninstall package-name Or remove multiple at once: npm uninstall package1 package2 package3 3. Check Cordova Plugins Run: cordova plugin list Manually remove unnecessary plugins: cordova plugin remove plugin-name 4. Clean node_modules and Reinstall rm -rf node_modules package-lock.json npm install 5. Optimize Your Build Run: npm run build --prod to ensure performance improvements.

πŸ“„ Which is best or in android development?

 The best approach between <FrameLayout> and <androidx.fragment.app.FragmentContainerView> for showing fragments in Android development depends on your project requirements. Here's a detailed comparison: 1. FrameLayout (Older Approach) βœ… Pros: Works well for dynamically adding and replacing fragments. Simple to use and has been widely used in older Android versions. ❌ Cons: Doesn't provide built-in fragment animations. Might cause issues with fragment state restoration. Less optimized for modern fragment transactions. Example Using FrameLayout xml < FrameLayout android:id = "@+id/fragmentContainer" android:layout_width = "match_parent" android:layout_height = "match_parent" /> kotlin supportFragmentManager.beginTransaction() .replace(R.id.fragmentContainer, HomeFragment()) .commit() 2. FragmentContainerView (Recommended) βœ… Pros: Officially recommended by Android Jetpack for better fragment management. S...