File tree Expand file tree Collapse file tree 3 files changed +17
-5
lines changed
Expand file tree Collapse file tree 3 files changed +17
-5
lines changed Original file line number Diff line number Diff line change 11# Changes
22
3+ ### v1.0.0-beta.4
4+ - Compatible with globals for flexible configuration
5+
36### v1.0.0-alpha.8
47- Suppport for ` includeFontPadding `
58- Using gradle 2.2.3
Original file line number Diff line number Diff line change 1+ def DEF_BUILD_TOOLS_VERSION = ' 27.0.3'
2+ def DEF_COMPILE_SDK_VERSION = 26
3+ def DEF_MIN_SDK_VERSION = 16
4+ def DEF_TARGET_SDK_VERSION = 26
5+
6+ def _buildToolsVersion = rootProject. hasProperty(' buildToolsVersion' ) ? rootProject. buildToolsVersion : DEF_BUILD_TOOLS_VERSION
7+ def _compileSdkVersion = rootProject. hasProperty(' compileSdkVersion' ) ? rootProject. compileSdkVersion : DEF_COMPILE_SDK_VERSION
8+ def _minSdkVersion = rootProject. hasProperty(' minSdkVersion' ) ? rootProject. minSdkVersion : DEF_MIN_SDK_VERSION
9+ def _targetSdkVersion = rootProject. hasProperty(' targetSdkVersion' ) ? rootProject. targetSdkVersion : DEF_TARGET_SDK_VERSION
110
211buildscript {
312 repositories {
@@ -12,12 +21,12 @@ buildscript {
1221apply plugin : ' com.android.library'
1322
1423android {
15- compileSdkVersion 26
16- buildToolsVersion " 27.0.3 "
24+ compileSdkVersion _compileSdkVersion
25+ buildToolsVersion _buildToolsVersion
1726
1827 defaultConfig {
19- minSdkVersion 16
20- targetSdkVersion 26
28+ minSdkVersion _minSdkVersion
29+ targetSdkVersion _targetSdkVersion
2130 versionCode 1
2231 versionName " 1.0"
2332 }
Original file line number Diff line number Diff line change 11{
22 "name" : " react-native-text-size" ,
3- "version" : " 1.0.0-beta.3 " ,
3+ "version" : " 1.0.0-beta.4 " ,
44 "description" : " Measure text height and width without laying it out." ,
55 "main" : " index.js" ,
66 "types" : " ./index.d.ts" ,
You can’t perform that action at this time.
0 commit comments