aaa
Some checks failed
Flask 提示词大师 - CI/CD 流水线 / 代码质量检查 (push) Has been cancelled
Flask 提示词大师 - CI/CD 流水线 / 单元测试 (push) Has been cancelled
Flask 提示词大师 - CI/CD 流水线 / 集成测试 (push) Has been cancelled
Flask 提示词大师 - CI/CD 流水线 / 构建Docker镜像 (push) Has been cancelled
Flask 提示词大师 - CI/CD 流水线 / 部署到测试环境 (push) Has been cancelled
Flask 提示词大师 - CI/CD 流水线 / 部署到生产环境 (push) Has been cancelled
Flask 提示词大师 - CI/CD 流水线 / 部署监控系统 (push) Has been cancelled
Some checks failed
Flask 提示词大师 - CI/CD 流水线 / 代码质量检查 (push) Has been cancelled
Flask 提示词大师 - CI/CD 流水线 / 单元测试 (push) Has been cancelled
Flask 提示词大师 - CI/CD 流水线 / 集成测试 (push) Has been cancelled
Flask 提示词大师 - CI/CD 流水线 / 构建Docker镜像 (push) Has been cancelled
Flask 提示词大师 - CI/CD 流水线 / 部署到测试环境 (push) Has been cancelled
Flask 提示词大师 - CI/CD 流水线 / 部署到生产环境 (push) Has been cancelled
Flask 提示词大师 - CI/CD 流水线 / 部署监控系统 (push) Has been cancelled
This commit is contained in:
@@ -0,0 +1,146 @@
|
||||
// Generated by view binder compiler. Do not edit!
|
||||
package com.example.promptoptimizer.databinding;
|
||||
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.EditText;
|
||||
import android.widget.ProgressBar;
|
||||
import android.widget.ScrollView;
|
||||
import android.widget.TextView;
|
||||
import androidx.annotation.NonNull;
|
||||
import androidx.annotation.Nullable;
|
||||
import androidx.viewbinding.ViewBinding;
|
||||
import androidx.viewbinding.ViewBindings;
|
||||
import com.example.promptoptimizer.R;
|
||||
import com.google.android.material.button.MaterialButton;
|
||||
import com.google.android.material.card.MaterialCardView;
|
||||
import java.lang.NullPointerException;
|
||||
import java.lang.Override;
|
||||
import java.lang.String;
|
||||
|
||||
public final class ActivityMainBinding implements ViewBinding {
|
||||
@NonNull
|
||||
private final ScrollView rootView;
|
||||
|
||||
@NonNull
|
||||
public final MaterialButton btnCopy;
|
||||
|
||||
@NonNull
|
||||
public final MaterialButton btnGenerate;
|
||||
|
||||
@NonNull
|
||||
public final MaterialCardView cardResult;
|
||||
|
||||
@NonNull
|
||||
public final EditText etInput;
|
||||
|
||||
@NonNull
|
||||
public final ProgressBar progressBar;
|
||||
|
||||
@NonNull
|
||||
public final TextView tvIntent;
|
||||
|
||||
@NonNull
|
||||
public final TextView tvLoading;
|
||||
|
||||
@NonNull
|
||||
public final TextView tvPrompt;
|
||||
|
||||
private ActivityMainBinding(@NonNull ScrollView rootView, @NonNull MaterialButton btnCopy,
|
||||
@NonNull MaterialButton btnGenerate, @NonNull MaterialCardView cardResult,
|
||||
@NonNull EditText etInput, @NonNull ProgressBar progressBar, @NonNull TextView tvIntent,
|
||||
@NonNull TextView tvLoading, @NonNull TextView tvPrompt) {
|
||||
this.rootView = rootView;
|
||||
this.btnCopy = btnCopy;
|
||||
this.btnGenerate = btnGenerate;
|
||||
this.cardResult = cardResult;
|
||||
this.etInput = etInput;
|
||||
this.progressBar = progressBar;
|
||||
this.tvIntent = tvIntent;
|
||||
this.tvLoading = tvLoading;
|
||||
this.tvPrompt = tvPrompt;
|
||||
}
|
||||
|
||||
@Override
|
||||
@NonNull
|
||||
public ScrollView getRoot() {
|
||||
return rootView;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ActivityMainBinding inflate(@NonNull LayoutInflater inflater) {
|
||||
return inflate(inflater, null, false);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ActivityMainBinding inflate(@NonNull LayoutInflater inflater,
|
||||
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||
View root = inflater.inflate(R.layout.activity_main, parent, false);
|
||||
if (attachToParent) {
|
||||
parent.addView(root);
|
||||
}
|
||||
return bind(root);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ActivityMainBinding bind(@NonNull View rootView) {
|
||||
// The body of this method is generated in a way you would not otherwise write.
|
||||
// This is done to optimize the compiled bytecode for size and performance.
|
||||
int id;
|
||||
missingId: {
|
||||
id = R.id.btnCopy;
|
||||
MaterialButton btnCopy = ViewBindings.findChildViewById(rootView, id);
|
||||
if (btnCopy == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.btnGenerate;
|
||||
MaterialButton btnGenerate = ViewBindings.findChildViewById(rootView, id);
|
||||
if (btnGenerate == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.cardResult;
|
||||
MaterialCardView cardResult = ViewBindings.findChildViewById(rootView, id);
|
||||
if (cardResult == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.etInput;
|
||||
EditText etInput = ViewBindings.findChildViewById(rootView, id);
|
||||
if (etInput == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.progressBar;
|
||||
ProgressBar progressBar = ViewBindings.findChildViewById(rootView, id);
|
||||
if (progressBar == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.tvIntent;
|
||||
TextView tvIntent = ViewBindings.findChildViewById(rootView, id);
|
||||
if (tvIntent == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.tvLoading;
|
||||
TextView tvLoading = ViewBindings.findChildViewById(rootView, id);
|
||||
if (tvLoading == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.tvPrompt;
|
||||
TextView tvPrompt = ViewBindings.findChildViewById(rootView, id);
|
||||
if (tvPrompt == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
return new ActivityMainBinding((ScrollView) rootView, btnCopy, btnGenerate, cardResult,
|
||||
etInput, progressBar, tvIntent, tvLoading, tvPrompt);
|
||||
}
|
||||
String missingId = rootView.getResources().getResourceName(id);
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
/**
|
||||
* Automatically generated file. DO NOT MODIFY
|
||||
*/
|
||||
package com.example.promptoptimizer;
|
||||
|
||||
public final class BuildConfig {
|
||||
public static final boolean DEBUG = Boolean.parseBoolean("true");
|
||||
public static final String APPLICATION_ID = "com.example.promptoptimizer";
|
||||
public static final String BUILD_TYPE = "debug";
|
||||
public static final int VERSION_CODE = 1;
|
||||
public static final String VERSION_NAME = "1.0";
|
||||
// Field from default config.
|
||||
public static final String BASE_URL = "http://101.43.95.130:5002/";
|
||||
}
|
||||
Reference in New Issue
Block a user