Skip to content
This repository was archived by the owner on Feb 11, 2020. It is now read-only.

Commit 1e3256c

Browse files
committed
Add latest prepackaged libraries to the repo
1 parent b89efc1 commit 1e3256c

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,4 @@
1212
/studio
1313
/captures
1414
.externalNativeBuild
15+
/androidx_prebuilts

app/src/main/AndroidManifest.xml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@
1010
android:icon="@drawable/app_icon">
1111
<activity android:name="dev.mishkun.trycompose.MainActivity">
1212
<intent-filter>
13-
<action android:name="android.intent.action.MAIN" />
13+
<action android:name="android.intent.msg.MAIN"/>
14+
15+
<action android:name="android.intent.action.VIEW"/>
1416

1517
<category android:name="android.intent.category.LAUNCHER" />
1618
</intent-filter>

app/src/main/java/dev/mishkun/trycompose/MainActivity.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ package dev.mishkun.trycompose
33
import androidx.appcompat.app.AppCompatActivity
44
import android.os.Bundle
55
import androidx.compose.*
6-
import androidx.ui.core.CraneWrapper
6+
import androidx.ui.core.setContent
77

88
class MainActivity : AppCompatActivity() {
99

1010
override fun onCreate(savedInstanceState: Bundle?) {
1111
super.onCreate(savedInstanceState)
12-
setContent { CraneWrapper { SimpleComposable() } }
12+
setContent { SimpleComposable() }
1313
}
1414
}

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22
buildscript {
3-
ext.kotlin_version = "1.3.30-compose-20190503"
3+
ext.kotlin_version = "1.3.30-compose-20190520"
44
ext.androidx_home = project.properties["androidx.home"] ?: "$projectDir/androidx_prebuilts"
55
repositories {
66
maven { url "$androidx_home/out/ui/build/support_repo/" }

studio_versions.properties

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
# This file specifies the version of the Android Gradle Plugin and Android Studio to use
2-
# TODO: autogenerate this file based on the version of AGP
32

4-
# the version of the Android Gradle Plugin
5-
agp=3.4.0
63
# version properties for studiow, which should correspond to the version of AGP
7-
studio_version=3.4.1.0
8-
idea_major_version=183
9-
studio_build_number=5543569
4+
studio_version=3.5.0.13
5+
idea_major_version=191
6+
studio_build_number=5677133

0 commit comments

Comments
 (0)