Skip to content

Commit 7a2eace

Browse files
committed
deploy settings were changed
1 parent 5a3909c commit 7a2eace

File tree

4 files changed

+39
-5
lines changed

4 files changed

+39
-5
lines changed

app/build.gradle

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id 'com.android.library'
2+
id 'com.android.application'
33
id 'kotlin-android'
44
}
55

@@ -8,6 +8,7 @@ android {
88
buildToolsVersion "30.0.3"
99

1010
defaultConfig {
11+
applicationId "com.example.socially"
1112
minSdkVersion 23
1213
targetSdkVersion 31
1314
versionCode 1

app/src/main/AndroidManifest.xml

+22-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,23 @@
11
<?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>

socially/build.gradle

+14
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,18 @@ dependencies {
4343
testImplementation 'junit:junit:4.+'
4444
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
4545
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+
}
4660
}

socially/src/main/AndroidManifest.xml

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3-
package="com.enofeb.socially">
4-
5-
</manifest>
3+
package="com.enofeb.socially"/>

0 commit comments

Comments
 (0)