Skip to content
This repository was archived by the owner on Apr 17, 2026. It is now read-only.

Commit 4f98f3a

Browse files
committed
Updated pod version, added comments and a missing import in public header
1 parent 0bc545d commit 4f98f3a

3 files changed

Lines changed: 6 additions & 5 deletions

File tree

Classes/GTXChecksCollection.m

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@
3838
#pragma mark - Globals
3939

4040
/**
41-
* The minimum size (width or height) for a given element to be easily accessible.
42-
* Based on Apple's Human Interface Guidelines:
43-
* https://developer.apple.com/design/human-interface-guidelines/ios/visual-design/adaptivity-and-layout/
41+
* The minimum size (width or height) for a given element to be easily accessible. Please read
42+
* Material design guidelines for more on touch targets:
43+
* https://material.io/design/layout/spacing-methods.html#touch-click-targets
4444
*/
4545
static const float kGTXMinSizeForAccessibleElements = 44.0;
4646

Classes/GTXiLib.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ FOUNDATION_EXPORT const unsigned char GTXiLibVersionString[];
3939
#import <GTXiLib/GTXImageAndColorUtils.h>
4040
#import <GTXiLib/GTXLogging.h>
4141
#import <GTXiLib/GTXPluginXCTestCase.h>
42+
#import <GTXiLib/GTXTestEnvironment.h>
4243
#import <GTXiLib/GTXToolKit.h>
4344
#import <GTXiLib/GTXTestSuite.h>
4445
#import <GTXiLib/NSError+GTXAdditions.h>

GTXiLib.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "GTXiLib"
3-
s.version = "2.0"
3+
s.version = "2.1"
44
s.summary = "iOS Accessibility testing library."
55
s.description = <<-DESC
66
iOS Accessibility testing library that works with XCTest based frameworks.
@@ -9,6 +9,6 @@ Pod::Spec.new do |s|
99
s.license = "Apache License 2.0"
1010
s.author = "j-sid"
1111
s.platform = :ios
12-
s.source = { :git => "https://github.com/google/GTXiLib.git", :tag => "2.0.0" }
12+
s.source = { :git => "https://github.com/google/GTXiLib.git", :tag => "2.1.0" }
1313
s.source_files = "Classes/**/*.{h,m,swift}"
1414
end

0 commit comments

Comments
 (0)