Skip to content
Open
Show file tree
Hide file tree
Changes from 7 commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
18a57d9
convert Marquee java to kt and apply kotlin plugin
lynring24 Jul 22, 2017
7132a98
convert text.LogTextBox1 java to kt
lynring24 Jul 22, 2017
9d24dc9
convert LogTextBox && Link java to kt
lynring24 Jul 22, 2017
92054df
found </a> missing
lynring24 Jul 22, 2017
48bfdd1
modified a depreciated Html.fromHtml() by version
lynring24 Jul 22, 2017
eb2138c
convert SeekBar java to kt
lynring24 Jul 29, 2017
2d22fac
converted AlarmController java to kt
lynring24 Jul 29, 2017
4baef90
removed comment
lynring24 Aug 11, 2017
01b8e36
used by lazy for t2(textView)
lynring24 Aug 11, 2017
b1d8c18
used lazy for t3 (textView)
lynring24 Aug 11, 2017
fed790f
used lazy for val t4
lynring24 Aug 11, 2017
88ec3ae
used lazy to init var mText and removed !!.apend
lynring24 Aug 11, 2017
3793084
use Kotlin synthetic property instead of java calendar.set()
lynring24 Aug 11, 2017
f965748
apply plugin: 'kotlin-android-extensions'
lynring24 Aug 11, 2017
b3a28ad
used extention code instead of findViewById
lynring24 Aug 11, 2017
1ae905e
convert AlarmService to kt
lynring24 Aug 11, 2017
aa830bf
FragmentAlertDialog converted to kt
lynring24 Aug 12, 2017
294f902
simplify DialogInterface.OnClickListener with Lamda
lynring24 Aug 12, 2017
5c595f5
add string resource for Fragment Alert Dialog msg
lynring24 Aug 12, 2017
9fd3753
used extention code instead of findViewById
lynring24 Aug 12, 2017
957b74d
applied lamda to onClickListener
lynring24 Aug 12, 2017
fe87cba
used kotlin properies instead
lynring24 Aug 12, 2017
829252c
fixed FragmentAlertDialog::doPositiceClick to (activity as Fragment) …
lynring24 Aug 12, 2017
dad4a72
Convert AlarmService_service to kotlin
lynring24 Aug 26, 2017
94cabb8
Convert IsolatedService to Kotlin
lynring24 Aug 26, 2017
f186edd
Convert IsolatedService2 to Kotlin
lynring24 Aug 26, 2017
df13761
Convert LocalService to Kotlin
lynring24 Aug 26, 2017
5f54bf2
Import Context
lynring24 Aug 26, 2017
45480b8
Convert LocalServiceActivies to Kotlin
lynring24 Aug 26, 2017
61d55d8
Convert NotificationBackgroundService to Kotlin
lynring24 Aug 26, 2017
a5e599a
changed to extension code
lynring24 Aug 26, 2017
c980368
Convert NotifyingController to Kotlin
lynring24 Aug 26, 2017
a0398a3
Convert NotifyingService to Kotlin
lynring24 Aug 26, 2017
9c90694
Convert ServiceStartArguments to Kotlin
lynring24 Aug 26, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,13 @@
// vim: ts=4 sts=4 sw=4 expandtab

buildscript {
ext.kotlin_version = '1.1.3-2'
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.3'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
Expand Down
5 changes: 5 additions & 0 deletions mobile/build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'

android {
compileSdkVersion 26
Expand Down Expand Up @@ -27,4 +28,8 @@ dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.android.support:support-v4:26.0.0-beta2'
compile 'com.android.support:appcompat-v7:26.0.0-beta2'
compile "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
}
repositories {
mavenCentral()
}
168 changes: 0 additions & 168 deletions mobile/src/main/java/com/example/android/apis/app/AlarmController.java

This file was deleted.

Loading