Description
You can create a new Kotgo template project fast by using the following command. Just paste and execute it at a terminal prompt. Have fun!
Kotgo alternatives and similar packages
Based on the "Framework" category.
Alternatively, view Kotgo alternatives based on common mentions on social networks and blogs.
-
android-common
Android common lib, include ImageCache, HttpCache, DropDownListView, DownloadManager, Utils and so on -
android-priority-jobqueue
A Job Queue specifically written for Android to easily schedule jobs (tasks) that run in the background, improving UX and application stability. -
AndroidDynamicLoader
A plugin system that runs like a browser, but instead of load web pages, it load plugins which runs natively on Android system. -
legend
Legend is a Hook framework for Android Development, it allows you to Hook Java methods without ROOT. Even more exciting is that it supports both Dalvik and Art environment! -
LiteCommon
Android Common Utils or Helper. Such as Log, Averager, Base64, Check, FlashLight, KeyguardLock, LogReader, Network, SilentInstaller, TimeAverager, TimeCounter, Toastor, WakeLock, ScreenReceiver, SmsReceiver, PhoneReceiver, NotificationService, AndroidUtil, AppUtil, BitmapUtil, ByteUtil, ClassUtil, DialogUtil, FieldUtil, FileUtil, HexUtil, MD5Uti… -
JsonToKotlinClass
Plugin for Android Studio And IntelliJ Idea to generate Kotlin data class code from JSON text ( Json to Kotlin ) -
Rosie
Rosie is an Android framework to create applications following the principles of Clean Architecture. -
ignition
Ignition helps you getting your Android applications off the ground quickly, by offering ready-to-use components and utility classes that wrap a lot of the boilerplate that's involved when writing Android apps. -
Anvil
Tiny library for building reactive UI components (with data binding and event listeners binding), inspired by React.js. -
EasyMVP
A full-featured framework that allows building android applications following the principles of Clean Architecture. -
ACDD
ACDD,Android Component Dynamic Deployment(plugin) Solution,if any question,send me e-mail Solution -
Theatre
Pet project using Clean Architecture + MVVM + Reactive Extensions + Android Architecture Components. The data is fetched from LondonTheatreDirect API. 🎭 -
android-snapshot-publisher
Gradle plugin to prepare and distribute Android Snapshot versions -
Villains & Heroes
App using Marvel Comics API that allows developers everywhere to access information about Marvel's vast library of comics -
OkHttpProfiler Android Studio Plugin
The source code of the plugin https://plugins.jetbrains.com/plugin/11249-okhttp-profiler
Scout APM: A developer's best friend. Try free for 14-days
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest. Visit our partner's website for more details.
Do you think we are missing an alternative of Kotgo or a related project?
README
README
This is an android application template project built with kotlin language and some useful libraries. It provides a creator script to quickly create an project from template.
Creating project
Make sure you have installed Python 3 and requests library before proceeding. And then paste the following command at a terminal, replace the PROJECT_NAME
and APP_PACKAGE_NAME
and execute it:
python3 -c \
"$(curl -fsSL https://raw.githubusercontent.com/nekocode/create-android-kotlin-app/master/create-android-kotlin-app.py)" \
PROJECT_NAME \
APP_PACKAGE_NAME
What is included
This template project includes some of the latest features in Android development:
- Uses kotlin completely (includes gradle build scripts)
- Uses AndroidX & Android Architecture Components (includes Navigation, ViewModel, LiveData)
- Uses some powerful generic libraries like RxKotlin, Dagger2, etc
- Includes some useful features & extensions:
- Provides convenient way to inject dependencies to Activity, Fragment & ViewModel
- Provides extension methods
autoDisposable()
for auto disposing rx streams in Activity, Fragment & ViewModel
For more details, you can check the source code directly.