Skip to content

Commit 783f8fe

Browse files
committed
dev commit
1 parent 80fe093 commit 783f8fe

941 files changed

Lines changed: 92886 additions & 76 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.DS_Store

0 Bytes
Binary file not shown.

TextViewerModule/.DS_Store

0 Bytes
Binary file not shown.

TextViewerModule/build.gradle.kts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -99,15 +99,15 @@ dependencies {
9999
implementation(libs.androidx.compose.ui)
100100
implementation(libs.androidx.composeuigraphics)
101101
implementation(libs.androidx.core.ktx)
102-
implementation(platform (libs.androidx.compose.bom))
103-
androidTestImplementation(platform (libs.androidx.compose.bom))
102+
implementation(platform(libs.androidx.compose.bom))
103+
androidTestImplementation(platform(libs.androidx.compose.bom))
104104
}
105105

106-
afterEvaluate {
107-
publishing {
108-
publications {
109-
register("release", MavenPublication::class) {
110106

107+
publishing {
108+
publications {
109+
register("release", MavenPublication::class) {
110+
afterEvaluate {
111111
// Applies the component for the release build variant.
112112
// NOTE : Delete this line code if you publish Native Java / Kotlin Library
113113
from(components["release"])
@@ -119,8 +119,8 @@ afterEvaluate {
119119
artifactId = "TextFileViewerAndroid"
120120

121121
// Version Library Name
122-
version = "1.3.3"
123-
}
122+
version = "1.3.4"
124123
}
125124
}
126125
}
126+
}

TextViewerModule/build/.DS_Store

6 KB
Binary file not shown.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
o/classes
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
// Generated by view binder compiler. Do not edit!
2+
package com.bharathvishal.textfileviewer.databinding;
3+
4+
import android.view.LayoutInflater;
5+
import android.view.View;
6+
import android.view.ViewGroup;
7+
import android.widget.RelativeLayout;
8+
import androidx.annotation.NonNull;
9+
import androidx.annotation.Nullable;
10+
import androidx.viewbinding.ViewBinding;
11+
import com.bharathvishal.textfileviewer.R;
12+
import java.lang.NullPointerException;
13+
import java.lang.Override;
14+
15+
public final class MainlayoutBinding implements ViewBinding {
16+
@NonNull
17+
private final RelativeLayout rootView;
18+
19+
private MainlayoutBinding(@NonNull RelativeLayout rootView) {
20+
this.rootView = rootView;
21+
}
22+
23+
@Override
24+
@NonNull
25+
public RelativeLayout getRoot() {
26+
return rootView;
27+
}
28+
29+
@NonNull
30+
public static MainlayoutBinding inflate(@NonNull LayoutInflater inflater) {
31+
return inflate(inflater, null, false);
32+
}
33+
34+
@NonNull
35+
public static MainlayoutBinding inflate(@NonNull LayoutInflater inflater,
36+
@Nullable ViewGroup parent, boolean attachToParent) {
37+
View root = inflater.inflate(R.layout.mainlayout, parent, false);
38+
if (attachToParent) {
39+
parent.addView(root);
40+
}
41+
return bind(root);
42+
}
43+
44+
@NonNull
45+
public static MainlayoutBinding bind(@NonNull View rootView) {
46+
if (rootView == null) {
47+
throw new NullPointerException("rootView");
48+
}
49+
50+
return new MainlayoutBinding((RelativeLayout) rootView);
51+
}
52+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
/**
2+
* Automatically generated file. DO NOT MODIFY
3+
*/
4+
package com.bharathvishal.textfileviewer.test;
5+
6+
public final class BuildConfig {
7+
public static final boolean DEBUG = Boolean.parseBoolean("true");
8+
public static final String APPLICATION_ID = "com.bharathvishal.textfileviewer.test";
9+
public static final String BUILD_TYPE = "debug";
10+
}
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
/**
2+
* Automatically generated file. DO NOT MODIFY
3+
*/
4+
package com.bharathvishal.textfileviewer;
5+
6+
public final class BuildConfig {
7+
public static final boolean DEBUG = Boolean.parseBoolean("true");
8+
public static final String LIBRARY_PACKAGE_NAME = "com.bharathvishal.textfileviewer";
9+
public static final String BUILD_TYPE = "debug";
10+
}
Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<!--
3+
Copyright 2023-2024 Bharath Vishal G.
4+
5+
Licensed under the Apache License, Version 2.0 (the "License");
6+
you may not use this file except in compliance with the License.
7+
You may obtain a copy of the License at
8+
9+
http://www.apache.org/licenses/LICENSE-2.0
10+
11+
Unless required by applicable law or agreed to in writing, software
12+
distributed under the License is distributed on an "AS IS" BASIS,
13+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
See the License for the specific language governing permissions and
15+
limitations under the License.
16+
-->
17+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
18+
package="com.bharathvishal.textfileviewer" >
19+
20+
<uses-sdk android:minSdkVersion="22" />
21+
22+
<application>
23+
<activity
24+
android:name="com.bharathvishal.textfileviewer.Activities.ExampleActivityJava"
25+
android:exported="true"
26+
android:label="@string/app_name"
27+
android:theme="@style/Theme.TextViewerAndroid" />
28+
<activity
29+
android:name="com.bharathvishal.textfileviewer.Activities.ExampleActivityKotlinCompose"
30+
android:exported="true"
31+
android:label="@string/app_name"
32+
android:theme="@style/Theme.TextViewerAndroid" >
33+
<intent-filter>
34+
<action android:name="android.intent.action.MAIN" />
35+
36+
<category android:name="android.intent.category.LAUNCHER" />
37+
</intent-filter>
38+
</activity>
39+
<activity
40+
android:name="com.bharathvishal.textfileviewer.Activities.TextViewMainActivity"
41+
android:exported="true"
42+
android:label="@string/app_name"
43+
android:theme="@style/Theme.TextViewerAndroid" />
44+
<activity
45+
android:name="com.bharathvishal.textfileviewer.Activities.TextViewMainActivityWearable"
46+
android:exported="true"
47+
android:label="@string/app_name"
48+
android:theme="@style/Theme.TextViewerAndroid" />
49+
50+
<provider
51+
android:name="androidx.core.content.FileProvider"
52+
android:authorities="dollar_openBracket_applicationId_closeBracket.provider"
53+
android:exported="false"
54+
android:grantUriPermissions="true" >
55+
<meta-data
56+
android:name="android.support.FILE_PROVIDER_PATHS"
57+
android:resource="@xml/providerpaths" />
58+
</provider>
59+
</application>
60+
61+
</manifest>

0 commit comments

Comments
 (0)