{"id":13540829,"url":"https://github.com/frogobox/frogo-android-sdk","last_synced_at":"2025-04-02T08:30:45.855Z","repository":{"id":65159839,"uuid":"293762352","full_name":"frogobox/frogo-android-sdk","owner":"frogobox","description":"Frogo Android SDK - Android SDK Core for Easy Development","archived":true,"fork":false,"pushed_at":"2022-03-14T08:35:28.000Z","size":521,"stargazers_count":21,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-12-31T00:04:09.958Z","etag":null,"topics":["android-sdk","frogo-sdk","gradle","sdk"],"latest_commit_sha":null,"homepage":"","language":"Kotlin","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/frogobox.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null},"funding":{"github":null,"patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"custom":"https://saweria.co/amirisback"}},"created_at":"2020-09-08T09:24:38.000Z","updated_at":"2023-02-07T02:58:15.000Z","dependencies_parsed_at":"2023-01-12T14:31:09.411Z","dependency_job_id":null,"html_url":"https://github.com/frogobox/frogo-android-sdk","commit_stats":{"total_commits":74,"total_committers":1,"mean_commits":74.0,"dds":0.0,"last_synced_commit":"08917b883a8fb0867924c1eceeea43fadbd97fbe"},"previous_names":["amirisback/frogo-sdk"],"tags_count":16,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/frogobox%2Ffrogo-android-sdk","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/frogobox%2Ffrogo-android-sdk/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/frogobox%2Ffrogo-android-sdk/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/frogobox%2Ffrogo-android-sdk/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/frogobox","download_url":"https://codeload.github.com/frogobox/frogo-android-sdk/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246781820,"owners_count":20832910,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["android-sdk","frogo-sdk","gradle","sdk"],"created_at":"2024-08-01T10:00:33.512Z","updated_at":"2025-04-02T08:30:45.443Z","avatar_url":"https://github.com/frogobox.png","language":"Kotlin","funding_links":["https://saweria.co/amirisback"],"categories":["Android Library","F"],"sub_categories":["Frogo Android Library"],"readme":"![](https://raw.githubusercontent.com/amirisback/amirisback/master/docs/image/deprecated.png?raw=true)\n\n## About This Project \n[![Android Arsenal](https://img.shields.io/badge/Android%20Arsenal-frogo--android--sdk-brightgreen.svg?style=flat-square)](https://android-arsenal.com/details/1/8317)\n[![](https://jitpack.io/v/frogobox/frogo-android-sdk.svg?style=flat-square)](https://jitpack.io/#frogobox/frogo-android-sdk) \u003cbr\u003e\n- Project Deprecated, try migrate to [frogo-sdk](https://github.com/frogobox/frogo-sdk) for multiplatform compatible\n- SDK for anything your problem to make easier developing android apps\n\n## Version Release\nThis Is Latest Release\n\n    $version_release = 2.0.8\n\nWhat's New??\n\n    * Update build gradle kts version library *\n\n## Download this project\n\n### Step 1. Add the JitPack repository to your build file (build.gradle : Project)\n    \n#### \u003cOption 1\u003e Groovy Gradle\n\n    // Add it in your root build.gradle at the end of repositories:\n\n    allprojects {\n        repositories {\n            ...\n            maven { url 'https://jitpack.io' }\n        }\n    }\n\n#### \u003cOption 2\u003e Kotlin DSL Gradle\n\n```kotlin\n// Add it in your root build.gradle.kts at the end of repositories:\n\nallprojects {\n    repositories {\n        ...\n        maven { url = uri(\"https://jitpack.io\") }\n    }\n}\n```\n      \n### Step 2. Add the dependency (build.gradle : Module)\n\n    #### \u003cOption 1\u003e Groovy Gradle\n\n        dependencies {\n            // library frogo-sdk\n            implementation 'com.github.frogobox:frogo-android-sdk:2.0.8'\n        }\n\n    #### \u003cOption 2\u003e Kotlin DSL Gradle\n\n        dependencies {\n            // library frogo-sdk\n            implementation(\"com.github.frogobox:frogo-android-sdk:2.0.8\")\n        }\n\n### Step 3. Function from this SDK\n\n#### All Class SDK\n```kotlin\nFrogoActivity\nFrogoApiCallback\nFrogoApiClient\nFrogoApiModel\nFrogoComposeActivity\nFrogoConstant\nFrogoDate\nFrogoFragment\nFrogoFunc\nFrogoLiveEvent\nFrogoLocalCallback\nFrogoMusic\nFrogoNavigation\nFrogoPreference\n```\n\n#### FrogoActivity\n```kotlin\nfun setupDetailActivity(title: String)\n\nfun setupChildFragment(frameId: Int, fragment: Fragment)\n\nfun showToast(message: String)\n\nfun setupEventEmptyView(view: View, isEmpty: Boolean)\n\nfun setupEventProgressView(view: View, progress: Boolean)\n\nfun checkExtra(extraKey: String): Boolean\n\nfun \u003cModel\u003e baseFragmentNewInstance(\n    fragment: FrogoFragment\u003c*\u003e,\n    argumentKey: String,\n    extraDataResult: Model\n)\n\nfun verifySignature()\n\nfun readSignature()\n\nfun verifyInstallerId()\n\nfun verifyUnauthorizedApps()\n\nfun verifyStores()\n\nfun verifyDebug()\n\nfun verifyEmulator()\n\nfun showApkSignatures()\n```\n\n#### FrogoFragment\n```kotlin\nfun setupChildFragment(frameId: Int, fragment: Fragment)\n\nfun checkArgument(argsKey: String): Boolean\n\nfun setupEventEmptyView(view: View, isEmpty: Boolean)\n\nfun setupEventProgressView(view: View, progress: Boolean)\n\nfun showToast(message: String)\n\nfun \u003cModel\u003e baseNewInstance(argsKey: String, data: Model)\n```\n#### FrogoFunc\n\n```kotlin\nfun createFolderPictureVideo()\n\nfun getVideoFilePath(): String\n\nfun createDialogDefault(\n    context: Context,\n    title: String,\n    message: String,\n    listenerYes: () -\u003e Unit,\n    listenerNo: () -\u003e Unit\n)\n\nfun noAction(): Boolean\n\nfun randomNumber(start: Int, end: Int): Int\n\nfun isNetworkAvailable(context: Context): Boolean?\n\nfun \u003cT\u003e fetchRawData(mContext: Context, sourceRaw: Int): ArrayList\u003cT\u003e\n\nfun \u003cT\u003e fetchRawData(mContext: Context, sourceRaw: Int, shuffle: Boolean): ArrayList\u003cT\u003e\n\nfun getJsonFromAsset(context: Context, filename: String): String?\n\nfun \u003cT\u003e getArrayFromJsonAsset(context: Context, filename: String): MutableList\u003cT\u003e\n\nfun getDrawableString(context: Context, nameResource: String): Int\n\nfun getRawString(context: Context, nameResource: String): Int\n```\n\n#### FrogoMusic\n\n```kotlin\nfun playMusic(context: Context, musicFile: Int)\n\nfun stopMusic()\n\nfun pauseMusic()\n```\n\n#### FrogoDate\n\n```kotlin\nfun getTimeStamp(): String\n\nfun getTimeNow(): String\n\nfun getCurrentDate(format: String): String\n\nfun dateTimeToTimeStamp(date: String?): Long\n\nfun getCurrentUTC(): String\n\nfun timetoHour(date: String?): String\n\nfun dateTimeTZtoHour(date: String?): String\n\nfun DateTimeMonth(date: String?): String\n\nfun dateTimeSet(date: String?): String\n\nfun dateTimeProblem(date: String?): String\n\nfun getTimeAgo(time: Long): String?\n\nfun compareDate(newDate: String): String?\n\nfun messageDate(newDate: String): String?\n\nfun getDataChat(time: Long): String?\n\nfun convertClassificationDate(string: String?): String\n\nfun convertDateNewFormat(string: String?): String\n\nfun convertLongDateNewFormat(string: String?): String\n\nfun revertFromLongDateNewFormat(string: String?): String\n\nfun convertTargetDate(string: String?): String\n\nfun diffTime(timeStart: String, timeEnd: String): Long\n```\n\n#### FrogoComposeActivity\n\n    In Progress Development\n\n\n## Colaborator\nVery open to anyone, I'll write your name under this, please contribute by sending an email to me\n\n- Mail To faisalamircs@gmail.com\n- Subject : Github _ [Github-Username-Account] _ [Language] _ [Repository-Name]\n- Example : Github_amirisback_kotlin_admob-helper-implementation\n\nName Of Contribute\n- Muhammad Faisal Amir\n- Waiting List\n- Waiting List\n\nWaiting for your contribute\n\n## Attention !!!\n- Please enjoy and don't forget fork and give a star\n- Don't Forget Follow My Github Account\n\n\n![ScreenShoot Apps](docs/image/mad_score.png?raw=true)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffrogobox%2Ffrogo-android-sdk","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffrogobox%2Ffrogo-android-sdk","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffrogobox%2Ffrogo-android-sdk/lists"}