0933
This commit is contained in:
		| @@ -18,13 +18,13 @@ def genVersionName(def versionName){ | ||||
| } | ||||
|  | ||||
| android { | ||||
|     compileSdkVersion 32 | ||||
|     buildToolsVersion "33.0.3" | ||||
|     compileSdkVersion 30 | ||||
|     buildToolsVersion "30.0.3" | ||||
|  | ||||
|     defaultConfig { | ||||
|         applicationId "cc.winboll.studio.aes" | ||||
|         minSdkVersion 24 | ||||
|         targetSdkVersion 30 | ||||
|         minSdkVersion 26 | ||||
|         targetSdkVersion 29 | ||||
|         versionCode 1 | ||||
|         // versionName 更新后需要手动设置  | ||||
|         // 项目模块目录的 build.gradle 文件的 stageCount=0 | ||||
| @@ -41,15 +41,32 @@ android { | ||||
|             proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' | ||||
|         } | ||||
|     } | ||||
|      | ||||
|     compileOptions { | ||||
|         sourceCompatibility JavaVersion.VERSION_11 | ||||
|         targetCompatibility JavaVersion.VERSION_11 | ||||
|     } | ||||
| } | ||||
|  | ||||
| dependencies { | ||||
| 	api project(':libaes') | ||||
| 	implementation project(':libaes') | ||||
|      | ||||
|     api fileTree(dir: 'libs', include: ['*.jar']) | ||||
|     implementation fileTree(dir: 'libs', include: ['*.jar']) | ||||
|      | ||||
|     implementation 'com.squareup.okhttp3:okhttp:4.4.1' | ||||
|      | ||||
|     // https://mvnrepository.com/artifact/com.github.open-android/pinyin4j | ||||
|     implementation 'com.github.open-android:pinyin4j:2.5.0' | ||||
|  | ||||
|     // https://github.com/baoyongzhang/android-PullRefreshLayout | ||||
|     implementation 'com.baoyz.pullrefreshlayout:library:1.2.0' | ||||
|      | ||||
|     implementation 'io.github.medyo:android-about-page:2.0.0' | ||||
|     implementation 'com.github.getActivity:ToastUtils:10.5' | ||||
|      | ||||
|     implementation 'com.jcraft:jsch:0.1.55' | ||||
|     implementation 'org.jsoup:jsoup:1.13.1' | ||||
|      | ||||
|     implementation 'androidx.appcompat:appcompat:1.1.0' | ||||
|     implementation 'androidx.viewpager:viewpager:1.0.0' | ||||
|     implementation 'androidx.fragment:fragment:1.1.0' | ||||
|     implementation 'com.google.android.material:material:1.4.0' | ||||
|      | ||||
|     implementation 'cc.winboll.studio:libapputils:9.3.2' | ||||
|     implementation 'cc.winboll.studio:libappbase:1.5.6' | ||||
| } | ||||
|   | ||||
| @@ -1,8 +1,8 @@ | ||||
| #Created by .winboll/winboll_app_build.gradle | ||||
| #Thu Feb 06 03:29:07 GMT 2025 | ||||
| #Fri Mar 07 01:30:12 GMT 2025 | ||||
| stageCount=6 | ||||
| libraryProject=libaes | ||||
| baseVersion=7.6 | ||||
| publishVersion=7.6.5 | ||||
| buildCount=16 | ||||
| buildCount=20 | ||||
| baseBetaVersion=7.6.6 | ||||
|   | ||||
| @@ -26,11 +26,11 @@ import cc.winboll.studio.libaes.unittests.TestDrawerFragmentActivity; | ||||
| import cc.winboll.studio.libaes.unittests.TestViewPageFragment; | ||||
| import cc.winboll.studio.libapputils.app.IWinBollActivity; | ||||
| import cc.winboll.studio.libapputils.bean.APPInfo; | ||||
| import cc.winboll.studio.libapputils.log.LogUtils; | ||||
| import com.a4455jkjh.colorpicker.ColorPickerDialog; | ||||
| import java.util.ArrayList; | ||||
| import androidx.appcompat.widget.Toolbar; | ||||
| import cc.winboll.studio.libapputils.app.AboutActivityFactory; | ||||
| import cc.winboll.studio.libappbase.LogUtils; | ||||
|  | ||||
| public class MainActivity extends DrawerFragmentActivity implements IWinBollActivity { | ||||
|  | ||||
| @@ -65,12 +65,12 @@ public class MainActivity extends DrawerFragmentActivity implements IWinBollActi | ||||
|  | ||||
|     @Override | ||||
|     public String getTag() { | ||||
|         return null; | ||||
|         return TAG; | ||||
|     } | ||||
|  | ||||
|     @Override | ||||
|     public Toolbar initToolBar() { | ||||
|         return null; | ||||
|         return mToolbar; | ||||
|     } | ||||
|  | ||||
|     @Override | ||||
| @@ -124,6 +124,9 @@ public class MainActivity extends DrawerFragmentActivity implements IWinBollActi | ||||
|     @Override | ||||
|     public boolean onCreateOptionsMenu(Menu menu) { | ||||
|         getMenuInflater().inflate(R.menu.toolbar_library, menu); | ||||
|         if(App.isDebuging()) { | ||||
|             getMenuInflater().inflate(cc.winboll.studio.libapputils.R.menu.toolbar_studio_debug, menu); | ||||
|         } | ||||
|         return super.onCreateOptionsMenu(menu); | ||||
|     } | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 ZhanGSKen
					ZhanGSKen