File tree 4 files changed +39
-5
lines changed
4 files changed +39
-5
lines changed Original file line number Diff line number Diff line change 1
1
plugins {
2
- id ' com.android.library '
2
+ id ' com.android.application '
3
3
id ' kotlin-android'
4
4
}
5
5
@@ -8,6 +8,7 @@ android {
8
8
buildToolsVersion " 30.0.3"
9
9
10
10
defaultConfig {
11
+ applicationId " com.example.socially"
11
12
minSdkVersion 23
12
13
targetSdkVersion 31
13
14
versionCode 1
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" utf-8" ?>
2
- <manifest package =" com.example.socially" />
2
+ <manifest xmlns : android =" http://schemas.android.com/apk/res/android"
3
+ package =" com.example.socially" >
4
+
5
+ <application
6
+ android : allowBackup =" true"
7
+ android : icon =" @mipmap/ic_launcher"
8
+ android : label =" @string/app_name"
9
+ android : roundIcon =" @mipmap/ic_launcher_round"
10
+ android : supportsRtl =" true"
11
+ android : theme =" @style/Theme.Socially" >
12
+ <activity
13
+ android : name =" com.example.socially.MainActivity"
14
+ android : exported =" true" >
15
+ <intent-filter >
16
+ <action android : name =" android.intent.action.MAIN" />
17
+
18
+ <category android : name =" android.intent.category.LAUNCHER" />
19
+ </intent-filter >
20
+ </activity >
21
+ </application >
22
+
23
+ </manifest >
Original file line number Diff line number Diff line change @@ -43,4 +43,18 @@ dependencies {
43
43
testImplementation ' junit:junit:4.+'
44
44
androidTestImplementation ' androidx.test.ext:junit:1.1.3'
45
45
androidTestImplementation ' androidx.test.espresso:espresso-core:3.4.0'
46
+ }
47
+
48
+ afterEvaluate {
49
+ publishing {
50
+ publications {
51
+ release(MavenPublication ) {
52
+ from components. release
53
+
54
+ groupId = ' com.enofeb.socially'
55
+ artifactId = ' social_text'
56
+ version = ' 1.0.9'
57
+ }
58
+ }
59
+ }
46
60
}
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" utf-8" ?>
2
2
<manifest xmlns : android =" http://schemas.android.com/apk/res/android"
3
- package =" com.enofeb.socially" >
4
-
5
- </manifest >
3
+ package =" com.enofeb.socially" />
You can’t perform that action at this time.
0 commit comments