74 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			Groovy
		
	
	
	
	
	
			
		
		
	
	
			74 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			Groovy
		
	
	
	
	
	
| apply plugin: 'com.android.application'
 | |
| apply from: '../.winboll/winboll_app_build.gradle'
 | |
| apply from: '../.winboll/winboll_lint_build.gradle'
 | |
| 
 | |
| def genVersionName(def versionName){
 | |
|     // 检查编译标志位配置
 | |
|     assert (winbollBuildProps['stageCount'] != null)
 | |
|     assert (winbollBuildProps['baseVersion'] != null)
 | |
|     // 保存基础版本号
 | |
|     winbollBuildProps.setProperty("baseVersion", "${versionName}");
 | |
|     //保存编译标志配置
 | |
|     FileOutputStream fos = new FileOutputStream(winbollBuildPropsFile)
 | |
|     winbollBuildProps.store(fos, "${winbollBuildPropsDesc}");
 | |
|     fos.close();
 | |
|     
 | |
|     // 返回编译版本号
 | |
|     return "${versionName}." + winbollBuildProps['stageCount']
 | |
| }
 | |
| 
 | |
| android {
 | |
|     compileSdkVersion 32
 | |
|     buildToolsVersion "32.0.0"
 | |
| 
 | |
|     defaultConfig {
 | |
|         applicationId "cc.winboll.studio.ollama"
 | |
|         minSdkVersion 26
 | |
|         targetSdkVersion 29
 | |
|         versionCode 1
 | |
|         // versionName 更新后需要手动设置 
 | |
|         // .winboll/winbollBuildProps.properties 文件的 stageCount=0
 | |
|         // Gradle编译环境下合起来的 versionName 就是 "${versionName}.0"
 | |
|         versionName "15.0"
 | |
|         if(true) {
 | |
|             versionName = genVersionName("${versionName}")
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     buildTypes {
 | |
|         release {
 | |
|             minifyEnabled false
 | |
|             proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
 | |
|         }
 | |
|     }
 | |
| }
 | |
| 
 | |
| dependencies {
 | |
|     api fileTree(dir: 'libs', include: ['*.jar'])
 | |
|     
 | |
|     api 'com.squareup.okhttp3:okhttp:4.4.1'
 | |
|     
 | |
|     // 吐司类库
 | |
|     api 'com.github.getActivity:ToastUtils:10.5'
 | |
| 
 | |
|     // Android 类库
 | |
|     api 'com.android.support:appcompat-v7:28.0.0' // 包含 AppCompatActivity
 | |
|     // https://mvnrepository.com/artifact/com.android.support/support-compat
 | |
|     api 'com.android.support:support-compat:28.0.0' // 保留原有依赖(可选)
 | |
|     // https://mvnrepository.com/artifact/com.android.support/support-v4
 | |
|     api 'com.android.support:support-v4:28.0.0'
 | |
|     // https://mvnrepository.com/artifact/com.android.support/support-media-compat
 | |
|     api 'com.android.support:support-media-compat:28.0.0'
 | |
|     // https://mvnrepository.com/artifact/com.android.support/support-core-utils
 | |
|     api 'com.android.support:support-core-utils:28.0.0'
 | |
|     // https://mvnrepository.com/artifact/com.android.support/support-core-ui
 | |
|     api 'com.android.support:support-core-ui:28.0.0'
 | |
|     // https://mvnrepository.com/artifact/com.android.support/support-fragment
 | |
|     api 'com.android.support:support-fragment:28.0.0'
 | |
|     // https://mvnrepository.com/artifact/com.android.support/recyclerview-v7
 | |
|     api 'com.android.support:recyclerview-v7:28.0.0'
 | |
|     
 | |
|     api 'cc.winboll.studio:libappbase:15.0.9'
 | |
|     api 'cc.winboll.studio:libapputils:15.0.11'
 | |
| }
 | 
