This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| apply plugin: 'com.android.application' | |
| apply plugin: 'dart.henson-plugin' // Apply plugin | |
| android { | |
| compileSdkVersion 27 | |
| buildToolsVersion '27.0.3' | |
| defaultConfig { | |
| applicationId "com.f22labs.darthensondemo" | |
| minSdkVersion 21 | |
| targetSdkVersion 27 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| buildscript { | |
| repositories { | |
| jcenter() | |
| google() | |
| } | |
| dependencies { | |
| classpath 'com.android.tools.build:gradle:3.1.4' | |
| classpath 'com.f2prateek.dart:henson-plugin:3.0.1' // Add the Henson plugin to the classpath | |
| // NOTE: Do not place your application dependencies here; they belong |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| apply plugin: 'com.android.application' | |
| android { | |
| compileSdkVersion 27 | |
| buildToolsVersion '27.0.3' | |
| defaultConfig { | |
| applicationId "com.f22labs.darthensondemo" | |
| minSdkVersion 21 | |
| targetSdkVersion 27 | |
| versionCode 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import android.os.Bundle; | |
| import android.support.v7.app.AppCompatActivity; | |
| import android.widget.Button; | |
| import android.widget.TextView; | |
| import android.widget.Toast; | |
| import butterknife.BindView; | |
| import butterknife.ButterKnife; | |
| import butterknife.OnClick; | |
| import dart.Dart; |
NewerOlder