All Projects → crazyhitty → Capstone Project

crazyhitty / Capstone Project

Licence: mit
Udacity android nanodegree p7

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Capstone Project

Filemanager
Android File Manager Demo
Stars: ✭ 36 (-35.71%)
Mutual labels:  android-application
Eyevis
Android based Vocal Vision for Visually Impaired. Object Detection, Voice Assistance, Optical Character Reader, Read Aloud, Face Recognition, Landmark Recognition, Image Labelling etc.
Stars: ✭ 48 (-14.29%)
Mutual labels:  android-application
Phonenumberverificationui Android
Check out the new style for mobile number verification 😉😉😊😊
Stars: ✭ 52 (-7.14%)
Mutual labels:  android-application
Elementary
Elementary is a simple Periodic Table and element reference application for Android.
Stars: ✭ 43 (-23.21%)
Mutual labels:  android-application
Android File Chooser
Handle Android file chooser click actions on all Android versions
Stars: ✭ 46 (-17.86%)
Mutual labels:  android-application
Algo Explorer
Android app for learning algorithms in Computer Science
Stars: ✭ 49 (-12.5%)
Mutual labels:  android-application
Androidkex
Extensions for Kotlin. Use the power of Kotlin to make your code smaller and beautiful.
Stars: ✭ 35 (-37.5%)
Mutual labels:  android-application
Mkvideoplayer
MKVideoPlayer library is a video player have some basic features that need to develop an video player application in android studio
Stars: ✭ 54 (-3.57%)
Mutual labels:  android-application
Fastair
A Android APP design to transferring files and IM between two Android device.Using WIFIP2p and Socket API
Stars: ✭ 47 (-16.07%)
Mutual labels:  android-application
Amazing Android Apps
Amazing open source Android apps written in Java.
Stars: ✭ 1,063 (+1798.21%)
Mutual labels:  android-application
Enigma
Gradle Plugin - Obfuscator String Encryption (Android/Java)
Stars: ✭ 43 (-23.21%)
Mutual labels:  android-application
Lifeup
《人升》是一款旨在实现「人生游戏化」的待办事项安卓应用。LifeUp is a to-do list android application with gamification.
Stars: ✭ 45 (-19.64%)
Mutual labels:  android-application
Ready For Tech Interview
💻 신입 개발자로서 준비를 하기 위해 지식을 정리하는 공간 👨‍💻
Stars: ✭ 1,035 (+1748.21%)
Mutual labels:  android-application
Heyyoo
Heyyoo is a sample social media Android application 📱 built to demonstrate use of Modern Android development tools - (Kotlin, Coroutines, Architecture Components, MVVM, Room, Retrofit, Material Components).
Stars: ✭ 38 (-32.14%)
Mutual labels:  android-application
Kotlin Android Scaffolding
An android project structure using kotlin and most common libraries.
Stars: ✭ 53 (-5.36%)
Mutual labels:  android-application
Androidroom
Android example to show how to use Room to access SQLite database on device for reading and writing data. This example also shows how to use LiveData and ViewModel with Room to build reactive, well performing and easy to maintain applications.
Stars: ✭ 36 (-35.71%)
Mutual labels:  android-application
Permissionsflow
A simple library to make it easy requesting permissions in Android using Kotlin Coroutines.
Stars: ✭ 49 (-12.5%)
Mutual labels:  android-application
Testleavesloading
Android 自定义 View 之 LeavesLoading
Stars: ✭ 55 (-1.79%)
Mutual labels:  android-application
Muzesto
Open source android music player with heavy implementations of visualization.
Stars: ✭ 53 (-5.36%)
Mutual labels:  android-application
Grocerystore With Server
Grocery Store with server integration
Stars: ✭ 51 (-8.93%)
Mutual labels:  android-application

Predator for ProductHunt

Google play Production badge Google play Beta badge Rating badge Build Status

Predator is a minimalistic client for ProductHunt. It shows latest products and collections fetched via ProductHunt api. It also offers other information like media and comments associated with that product.

Installation instructions

  • Clone this repository using git clone https://github.com/crazyhitty/Capstone-Project.git
  • Create api key and api secret for your project via product hunt api console. Make sure to login first on producthunt.com as the previous link will keep on redirecting you onto the main site until you log in. Also, make sure to put this in redirect uri: predator://com.crazyhitty.chdev.ks.predator/oauth2redirect
  • Add those keys in producthunt-wrapper's build.gradle file:
    debug {
            if (!project.hasProperty("isReleaseBuild") || "$isReleaseBuild" == "false") {
                def apiKey = "\"your_api_key_here\""
                def apiSecret = "\"your_api_secret_here\""
                def searchUrl = "\"\""
                def xAngoliaAgent = "\"\""
                def xAngoliaApplicationId = "\"\""
                def xAngoliaApiKey = "\"\""

                buildConfigField "String", "API_KEY", apiKey
                buildConfigField "String", "API_SECRET", apiSecret
                buildConfigField "String", "SEARCH_URL", searchUrl
                buildConfigField "String", "X_ANGOLIA_AGENT", xAngoliaAgent
                buildConfigField "String", "X_ANGOLIA_APPLICATION_ID", xAngoliaApplicationId
                buildConfigField "String", "X_ANGOLIA_API_KEY", xAngoliaApiKey
            }

            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
  • Now, just hit the run button on your android studio or execute installDebug task to install debug variant of the application.

Features

  • Minimal and simple user interface, which user can get easily acquainted with.
  • View and search through latest posts and collections from ProductHunt.
  • Checkout the media and comments of a particular post and share them with anyone.
  • Sync data in background even if the app is not running, so you can remain up to date with the latest posts and collections (Optional, can be activated via application settings).
  • Notification support.
  • Multiple font support.
  • Delightful animations to encourage the user experience.

Screenshots

alt text alt text

alt text alt text

alt text alt text

alt text alt text

alt text

Contributing

You can contribute to the project by either finding out bugs or by requesting new features.

Community

Google plus

Reddit

License

MIT License

Copyright (c) 2016 Kartik Sharma

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].