Skip to content

Commit bce4267

Browse files
committed
dev commit
1 parent 8b65a1f commit bce4267

File tree

3,477 files changed

+92823
-0
lines changed

Some content is hidden

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

3,477 files changed

+92823
-0
lines changed

TextViewerModule/build.gradle.kts renamed to textviewermodule/build.gradle.kts

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,3 +103,16 @@ dependencies {
103103
androidTestImplementation(platform(libs.androidx.compose.bom))
104104
}
105105

106+
107+
afterEvaluate {
108+
publishing {
109+
publications {
110+
create<MavenPublication>("maven") {
111+
from(components["release"])
112+
groupId = "com.github.BharathVishal"
113+
artifactId = "TextFileViewerAndroid"
114+
version = "1.3.9.3"
115+
}
116+
}
117+
}
118+
}
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: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"version": 3,
3+
"artifactType": {
4+
"type": "AAPT_FRIENDLY_MERGED_MANIFESTS",
5+
"kind": "Directory"
6+
},
7+
"applicationId": "com.bharathvishal.textfileviewer",
8+
"variantName": "debug",
9+
"elements": [
10+
{
11+
"type": "SINGLE",
12+
"filters": [],
13+
"attributes": [],
14+
"outputFile": "AndroidManifest.xml"
15+
}
16+
],
17+
"elementType": "File"
18+
}

0 commit comments

Comments
 (0)