Coder Social home page Coder Social logo

konifar / droidkaigi2016 Goto Github PK

View Code? Open in Web Editor NEW
660.0 47.0 133.0 6.98 MB

DroidKaigi 2016 official Android conference app in Tokyo.

Home Page: https://play.google.com/store/apps/details?id=io.github.droidkaigi.confsched

License: Apache License 2.0

Java 99.77% Shell 0.23%

droidkaigi2016's Introduction

DroidKaigi 2016 official Android app Circle CI Stories in Ready

DroidKaigi is a conference tailored for developers on 18th and 19th February 2016.

Try it on your device via DeployGate

Features

  • Show all sessions
  • Manage schedule
  • Show map
  • Search sessions and speakers

Development Environment

Java8 & retrolambda

This project uses Java8 and retrolambda. If you haven't set up Java8 yet, install it from here, and set env JAVA_HOME or JAVA8_HOME.

DataBinding

This project tries to use DataBinding.

<TextView
    android:id="@+id/txt_place"
    style="@style/Tag"
    android:layout_marginEnd="@dimen/spacing_xsmall"
    android:layout_marginRight="@dimen/spacing_xsmall"
    android:layout_marginTop="@dimen/spacing_xsmall"
    android:background="@drawable/tag_language"
    android:text="@{session.place.name}" /

Custom attributes are also used like below.

<ImageView
    android:id="@+id/img_speaker"
    android:layout_width="@dimen/user_image_small"
    android:layout_height="@dimen/user_image_small"
    android:layout_below="@id/tag_container"
    android:layout_marginTop="@dimen/spacing_small"
    android:contentDescription="@string/speaker"
    app:speakerImageUrl="@{session.speaker.imageUrl}" />

BindingAdapter like speakerImageUrl is written in DataBindingAttributeUtil.java.

@BindingAdapter("speakerImageUrl")
public static void setSpeakerImageUrl(ImageView imageView, @Nullable String imageUrl) {
    if (TextUtils.isEmpty(imageUrl)) {
        imageView.setImageDrawable(ContextCompat.getDrawable(imageView.getContext(), R.drawable.ic_speaker_placeholder));
    } else {
        Picasso.with(imageView.getContext())
                .load(imageUrl)
                .placeholder(R.drawable.ic_speaker_placeholder)
                .error(R.drawable.ic_speaker_placeholder)
                .transform(new CropCircleTransformation())
                .into(imageView);
    }
}

Dagger2

This project uses DI library Dagger2. See classes in di package.

src/main/java/io/github/droidkaigi/confsched/di
|
|--scope
|  |--ActivityScope.java
|  |--FragmentScope.java
|
|--ActivityComponent.java
|--ActivityModule.java
|--AppComponent.java
|--AppModule.java
|--FragmentComponent.java
|--FragmentModule.java

Orma

This project uses ORM library Android-Orma. Android-Orma is a lightning-fast and annotation based wrapper library of SQLiteDatabase.

Some model classes in model package have @Table annotation.

@Table
public class Session {
    @Column(indexed = true)
    @SerializedName("id")
    public int id;

    @Column(indexed = true)
    @SerializedName("title")
    public String title;

    // ...
}

These classes are saved in database via dao/SessionDao. To know more about Android-Orma, see document.

Todo

This project is under development. Issues are managed by GitHub Project. https://github.com/konifar/droidkaigi2016/projects/1

If you have a feature you want or find some bugs, please write an issue.

For speakers

If you want to change description of your session, feel free to send PullRequest 👍

You have to fix 3 json files below.

If you can write only English or Japanese, it is good to write same description in sessions_en.json and sessions_ja.json. And if you can translate to Arabic by using GoogleTranslate, please write Arabic description in sessions_ar.json.

Thanks! Enjoy together!

Libraries

This project uses some modern Android libraries.

License

Copyright 2016 Yusuke Konishi

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

droidkaigi2016's People

Contributors

cafedeaqua avatar cutmail avatar dkajiwara avatar esmasui avatar gfx avatar gotokatsuya avatar hkurokawa avatar hotchemi avatar k-mats avatar keithyokoma avatar ken5scal avatar konifar avatar mhidaka avatar mstssk avatar nkzn avatar ogapants avatar operando avatar punchdrunker avatar rejasupotaro avatar sgyang avatar shiraji avatar suino avatar syarihu avatar takahirom avatar thagikura avatar wakwak3125 avatar yaeda avatar ytrino avatar yulily100 avatar zaki50 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

droidkaigi2016's Issues

Add proguard

Proguard for release build.

If something happens, it might be good to use only to shrink apk like below ✋

-keepnames class ** { *; }

Select drawer first time

When user open app first time, the drawer is not selected.
All sessions menu should be selected.

2016-02-03_12_13_18_png

Change favorite button

Now favorite button is similar to Twitter.
I want to replace more good button and animation :finnadie:

2016-02-01_03_37_59_png

Create a server program to accept session feedback request

This is a dependent of #32 Add feedback function.

Create a server program which accepts a session feedback request like below:

POST https://droidkaigi.jp/feedback

{
  "sessionId": 1,
  "ratingValuability": 2,
  "ratingContents": 3,
  "ratingSpeaker": 3,
  "comment": "Good. But not best IMO."
}

Requirements

  • Can process ~50 req/sec
  • Average response time is less than 200 msec
  • Should be working for 4 days, from 18th Feb to 21th Feb
  • Data should be stored so that it can be summarised for each session later.
  • The size of comment is less than 1.2KB (400 characters in Japanese)

Add feedback function

Add feedback function per session.
For example, add feedback link button in SessionDetailFragment

2016-02-03_11_40_16_png

And I think remind notification is good.

No session shown after clean installation

Description

After clean installation, I launched the app but no session is shown on All Sessions screen.

Steps to reproduce

  1. Clean install the app. (developDebug)
  2. Launch the app
  3. Open All Sessions

Result

At step 3, no session is shown.

Expected result

At step 3, all the sessions are shown grouped by the date.

Add place and category search

Add category and place search in search page.
Because I think users want to know the sessions in same place where they are.

2016-02-03_12_28_16_png

Publish at Google Play

Dependency

#87 Prepare GooglePlayStore resources

Contents

  • Generate and store keystore somewhere secure
  • Build the release build
  • Write down the description
  • Upload screenshots and banner
  • Press Publish Button!

Fix en strings.xml

Now en strings.xml is not good. I want to check to someone who can speak English well 😉

Fix my schedule page tab

If user register only one day sessions, the tab in my schedule page is single.

2016-02-03_12_21_30_png

I think it is not bad. But there might be more good solution.

Add push notification feature

What

It might be better to add push notification feature. For example, We might want to notify participants to some message urgently.
Of course we don't have to have high priority for it.

Research conference app

Droidcon Kraków 2015

https://play.google.com/store/apps/details?id=pl.droidcon.app

  • HackatonやAfter partyなどの情報も載ってる
  • ハートを押したらMy scheduleに追加される
  • My scheduleのリマインド通知を設定でつけられる

Droidcon NYC 2015

https://play.google.com/store/apps/details?id=co.touchlab.droidconandroid
https://github.com/touchlab/DroidconApp

  • スポンサー載せられる
  • タグのフィルタがある
  • プロフィール機能がある
  • ログインがある(ただし、ログインしても何もできない)

Droidcon Italy 2015

https://play.google.com/store/apps/details?id=com.conferenceengineer.android.iosched.droidconit2015

  • セッションごとにSubmit Feedbackがある
  • セッションごとにシェアできる
  • アンケートのお願いのNotificationが来る

2016-01-10_17_32_37_png

# Droidcon Zegreb 2015

https://play.google.com/store/apps/details?id=hr.droidcon.conference2015

  • About librariesというライブラリはよさそう
  • 会場が色付けしてあってわかりやすい
  • 全体的にシンプルでよい

2016-01-10_17_35_15_png

# Droidcon Montréal

https://play.google.com/store/apps/details?id=ca.droidcon.iosched

  • ほとんどGoogle I/Oと同じ

Droidcon Paris 2015

https://play.google.com/store/apps/details?id=fr.paug.droidcon

Droidcon London 2014

https://play.google.com/store/apps/details?id=com.conferenceengineer.android.iosched.event1002
https://github.com/kevinmcdonagh/iosched

  • 追加のアニメーションがすごくいい

Google I/O 2015

https://play.google.com/store/apps/details?id=com.google.samples.apps.iosched

DroidKaigi カンファレンスアプリ

https://play.google.com/store/apps/details?id=com.droidkaigi.conference2015s

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.