質問編集履歴

3

付け足し修正しました

2020/04/08 12:48

投稿

Jhon_McClane
Jhon_McClane

スコア48

test CHANGED
File without changes
test CHANGED
@@ -33,6 +33,8 @@
33
33
  ```
34
34
 
35
35
  ```
36
+
37
+
36
38
 
37
39
  apply plugin: 'com.android.application'
38
40
 

2

付け足し修正

2020/04/08 12:48

投稿

Jhon_McClane
Jhon_McClane

スコア48

test CHANGED
File without changes
test CHANGED
@@ -32,7 +32,9 @@
32
32
 
33
33
  ```
34
34
 
35
+ ```
36
+
35
- ```apply plugin: 'com.android.application'
37
+ apply plugin: 'com.android.application'
36
38
 
37
39
 
38
40
 

1

codeの追加情報更新

2020/04/08 11:56

投稿

Jhon_McClane
Jhon_McClane

スコア48

test CHANGED
File without changes
test CHANGED
@@ -31,3 +31,79 @@
31
31
  }
32
32
 
33
33
  ```
34
+
35
+ ```apply plugin: 'com.android.application'
36
+
37
+
38
+
39
+ android {
40
+
41
+ compileSdkVersion 29
42
+
43
+ buildToolsVersion "29.0.3"
44
+
45
+
46
+
47
+ defaultConfig {
48
+
49
+ applicationId "com.example.samplelibrary"
50
+
51
+ minSdkVersion 15
52
+
53
+ targetSdkVersion 29
54
+
55
+ versionCode 1
56
+
57
+ versionName "1.0"
58
+
59
+
60
+
61
+ testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
62
+
63
+ }
64
+
65
+
66
+
67
+ buildTypes {
68
+
69
+ release {
70
+
71
+ minifyEnabled false
72
+
73
+ proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
74
+
75
+ }
76
+
77
+ }
78
+
79
+
80
+
81
+ }
82
+
83
+
84
+
85
+ dependencies {
86
+
87
+ implementation fileTree(dir: 'libs', include: ['*.jar'])
88
+
89
+
90
+
91
+ implementation 'androidx.appcompat:appcompat:1.1.0'
92
+
93
+ implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
94
+
95
+ testImplementation 'junit:junit:4.12'
96
+
97
+ androidTestImplementation 'androidx.test.ext:junit:1.1.1'
98
+
99
+ androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
100
+
101
+ implementation 'com.beardedhen:androidbootstrap:2.3.2'
102
+
103
+ }
104
+
105
+
106
+
107
+ コード
108
+
109
+ ```